object CommitDelivery
Selects how the stream delivers commits to the internal actor.
- Annotations
- @ApiMayChange()
- Source
- CommitterSettings.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CommitDelivery
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- val sendAndForget: CommitDelivery
Java API.
- def valueOf(s: String): CommitDelivery
- val waitForAck: CommitDelivery
Java API.
- case object SendAndForget extends CommitDelivery with Product with Serializable
Send off commits to the internal actor without expecting replies, and don't create backpressure in the stream.
Send off commits to the internal actor without expecting replies, and don't create backpressure in the stream.
- Annotations
- @ApiMayChange()
- case object WaitForAck extends CommitDelivery with Product with Serializable
Expect replies for commits, and backpressure the stream if replies do not arrive.
Expect replies for commits, and backpressure the stream if replies do not arrive.
- Annotations
- @ApiMayChange()