Class

slick.basic.BasicBackend

BasicStreamingActionContext

Related Doc: package BasicBackend

Permalink

class BasicStreamingActionContext extends BasicActionContext with StreamingActionContext with Subscription

A special DatabaseActionContext for streaming execution.

Attributes
protected[this]
Source
BasicBackend.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BasicStreamingActionContext
  2. Subscription
  3. StreamingActionContext
  4. BasicActionContext
  5. ActionContext
  6. AnyRef
  7. 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 BasicStreamingActionContext(subscriber: Subscriber[_], useSameThread: Boolean, database: Database)

    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 BasicStreamingActionContext to any2stringadd[BasicStreamingActionContext] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BasicStreamingActionContext, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BasicStreamingActionContext to ArrowAssoc[BasicStreamingActionContext] 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. def cancel(): Unit

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

    Permalink

    Whether the stream has been cancelled by the Subscriber

  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. 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.

  11. 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.

  12. 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
  13. def ensuring(cond: (BasicStreamingActionContext) ⇒ Boolean, msg: ⇒ Any): BasicStreamingActionContext

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  24. 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
  25. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  28. 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
  29. def request(l: Long): Unit

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

    Permalink

    Restart a suspended streaming action.

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

  31. def session: Session

    Permalink
    Definition Classes
    BasicActionContext
  32. val streamingResultPromise: Promise[Null]

    Permalink

    The Promise to complete when streaming has finished.

  33. def subscription: BasicStreamingActionContext

    Permalink

    Get the Subscription for this stream.

    Get the Subscription for this stream.

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  36. 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.

  37. 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.

  38. 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
  39. 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
  40. final def wait(): Unit

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

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

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

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

Inherited from Subscription

Inherited from StreamingActionContext

Inherited from BasicActionContext

Inherited from ActionContext

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped