Class

slick.jdbc.JdbcBackend

JdbcStreamingActionContext

Related Doc: package JdbcBackend

Permalink

class JdbcStreamingActionContext extends BasicStreamingActionContext with JdbcActionContext

Source
JdbcBackend.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JdbcStreamingActionContext
  2. JdbcActionContext
  3. BasicStreamingActionContext
  4. Subscription
  5. StreamingActionContext
  6. BasicActionContext
  7. ActionContext
  8. AnyRef
  9. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new JdbcStreamingActionContext(subscriber: Subscriber[_], useSameThread: Boolean, database: Database, bufferNext: Boolean)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to any2stringadd[JdbcStreamingActionContext] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JdbcStreamingActionContext, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to ArrowAssoc[JdbcStreamingActionContext] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val bufferNext: Boolean

    Permalink
  8. def cancel(): Unit

    Permalink
    Definition Classes
    BasicStreamingActionContext → Subscription
  9. def cancelled: Boolean

    Permalink

    Whether the stream has been cancelled by the Subscriber

    Whether the stream has been cancelled by the Subscriber

    Definition Classes
    BasicStreamingActionContext
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def connection: Connection

    Permalink

    The current JDBC Connection

    The current JDBC Connection

    Definition Classes
    JdbcActionContext
  12. def delivered(num: Long): Long

    Permalink

    Indicate that the specified number of elements has been delivered.

    Indicate that the specified number of elements has been delivered. Returns the remaining demand. This is an atomic operation. It must only be called from the synchronous action context which performs the streaming.

    Definition Classes
    BasicStreamingActionContext
  13. def demandBatch: Long

    Permalink

    Get the current demand that has not yet been marked as delivered and mark it as being in the current batch.

    Get the current demand that has not yet been marked as delivered and mark it as being in the current batch. When this value is negative, the initial streaming action is still running and the real demand can be computed by subtracting Long.MinValue from the returned value.

    Definition Classes
    BasicStreamingActionContext
  14. def emit(v: Any): Unit

    Permalink

    Emit a single result of the stream.

    Emit a single result of the stream. Any Exception thrown by this method should be passed on to the caller.

    Definition Classes
    BasicStreamingActionContextStreamingActionContext
  15. def ensuring(cond: (JdbcStreamingActionContext) ⇒ Boolean, msg: ⇒ Any): JdbcStreamingActionContext

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to Ensuring[JdbcStreamingActionContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: (JdbcStreamingActionContext) ⇒ Boolean): JdbcStreamingActionContext

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to Ensuring[JdbcStreamingActionContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean, msg: ⇒ Any): JdbcStreamingActionContext

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to Ensuring[JdbcStreamingActionContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. def ensuring(cond: Boolean): JdbcStreamingActionContext

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to Ensuring[JdbcStreamingActionContext] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  19. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  20. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to StringFormat[JdbcStreamingActionContext] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  25. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  26. final def isPinned: Boolean

    Permalink

    Check if the session is pinned.

    Check if the session is pinned. May only be called from a synchronous action context.

    Definition Classes
    ActionContext
  27. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  28. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  29. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  30. final def pin: Unit

    Permalink

    Pin the current session.

    Pin the current session. Multiple calls to pin may be nested. The same number of calls to unpin is required in order to mark the session as not pinned anymore. A pinned session will not be released at the end of a primitive database action. Instead, the same pinned session is passed to all subsequent actions until it is unpinned. Note that pinning does not force an actual database connection to be opened. This still happens on demand. May only be called from a synchronous action context.

    Definition Classes
    ActionContext
  31. def popStatementParameters: Unit

    Permalink
    Definition Classes
    JdbcActionContext
  32. def pushStatementParameters(p: StatementParameters): Unit

    Permalink
    Definition Classes
    JdbcActionContext
  33. def request(l: Long): Unit

    Permalink
    Definition Classes
    BasicStreamingActionContext → Subscription
  34. def restartStreaming: Unit

    Permalink

    Restart a suspended streaming action.

    Restart a suspended streaming action. Must only be called from the Subscriber context.

    Definition Classes
    BasicStreamingActionContext
  35. def session: Session

    Permalink
    Definition Classes
    JdbcActionContextBasicActionContext
  36. val streamingResultPromise: Promise[Null]

    Permalink

    The Promise to complete when streaming has finished.

    The Promise to complete when streaming has finished.

    Definition Classes
    BasicStreamingActionContext
  37. def subscription: JdbcBackend.BasicStreamingActionContext

    Permalink

    Get the Subscription for this stream.

    Get the Subscription for this stream.

    Definition Classes
    BasicStreamingActionContextStreamingActionContext
  38. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  39. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  40. def tryOnComplete: Unit

    Permalink

    Finish the stream with onComplete if it is not finished yet.

    Finish the stream with onComplete if it is not finished yet. May only be called from a synchronous action context.

    Definition Classes
    BasicStreamingActionContext
  41. def tryOnError(t: Throwable): Unit

    Permalink

    Finish the stream with onError if it is not finished yet.

    Finish the stream with onError if it is not finished yet. May only be called from a synchronous action context.

    Definition Classes
    BasicStreamingActionContext
  42. final def unpin: Unit

    Permalink

    Unpin this session once.

    Unpin this session once. May only be called from a synchronous action context.

    Definition Classes
    ActionContext
  43. val useSameThread: Boolean

    Permalink

    Whether to run all operations on the current thread or schedule them normally on the appropriate ExecutionContext.

    Whether to run all operations on the current thread or schedule them normally on the appropriate ExecutionContext. This is used by the blocking API.

    Attributes
    protected[slick.basic.BasicBackend]
    Definition Classes
    BasicStreamingActionContextBasicActionContext
  44. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  46. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. def [B](y: B): (JdbcStreamingActionContext, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from JdbcStreamingActionContext to ArrowAssoc[JdbcStreamingActionContext] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from JdbcActionContext

Inherited from Subscription

Inherited from StreamingActionContext

Inherited from ActionContext

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JdbcStreamingActionContext to any2stringadd[JdbcStreamingActionContext]

Inherited by implicit conversion StringFormat from JdbcStreamingActionContext to StringFormat[JdbcStreamingActionContext]

Inherited by implicit conversion Ensuring from JdbcStreamingActionContext to Ensuring[JdbcStreamingActionContext]

Inherited by implicit conversion ArrowAssoc from JdbcStreamingActionContext to ArrowAssoc[JdbcStreamingActionContext]

Ungrouped