class BasicStreamingActionContext extends BasicActionContext with StreamingActionContext with Subscription
A special DatabaseActionContext for streaming execution.
- Attributes
- protected[this]
- Source
- BasicBackend.scala
- Alphabetic
- By Inheritance
- BasicStreamingActionContext
- Subscription
- StreamingActionContext
- BasicActionContext
- ActionContext
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- Protected
Instance Constructors
Value Members
- def cancel(): Unit
- Definition Classes
- BasicStreamingActionContext → Subscription
- def cancelled: Boolean
Whether the stream has been cancelled by the Subscriber
- def delivered(num: Long): Long
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.
- def demandBatch: Long
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. - def emit(v: Any): Unit
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
- BasicStreamingActionContext → StreamingActionContext
- final def isPinned: Boolean
Check if the session is pinned.
Check if the session is pinned. May only be called from a synchronous action context.
- Definition Classes
- ActionContext
- final def pin: Unit
Pin the current session.
Pin the current session. Multiple calls to
pin
may be nested. The same number of calls tounpin
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
- def request(l: Long): Unit
- Definition Classes
- BasicStreamingActionContext → Subscription
- def restartStreaming: Unit
Restart a suspended streaming action.
Restart a suspended streaming action. Must only be called from the Subscriber context.
- def session: Session
- Definition Classes
- BasicActionContext
- val streamingResultPromise: Promise[Null]
The Promise to complete when streaming has finished.
- def subscription: BasicStreamingActionContext
Get the Subscription for this stream.
Get the Subscription for this stream.
- Definition Classes
- BasicStreamingActionContext → StreamingActionContext
- def tryOnComplete: Unit
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. - def tryOnError(t: Throwable): Unit
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. - final def unpin: Unit
Unpin this session once.
Unpin this session once. May only be called from a synchronous action context.
- Definition Classes
- ActionContext
edit this text on github
Scala Language-Integrated Connection Kit
This is the API documentation for the Slick database library. It should be used as an additional resource to the user manual.
Further documentation for Slick can be found on the documentation pages.
To the slick package list...