@@ -28,4 +28,6 @@ trait Session {
def state: State
def stop(): Future[Unit]
+
+ def logLines(): IndexedSeq[String]
}
@@ -21,5 +21,4 @@ package com.cloudera.hue.livy.server.batch
import com.cloudera.hue.livy.server.Session
trait BatchSession extends Session {
- def logLines(): IndexedSeq[String]
@@ -42,8 +42,6 @@ trait InteractiveSession extends Session {
def lastActivity: Long
-
def url: Option[URL]
def url_=(url: URL)