public abstract class EffectImpl<Event,State> extends Effect<Event,State> implements Effect<Event,State>
| Constructor and Description |
|---|
EffectImpl() |
| Modifier and Type | Method and Description |
|---|---|
abstract scala.Function1<State,scala.runtime.BoxedUnit> |
afterCallback()
INTERNAL API
|
EffectImpl<Event,State> |
andThen(java.util.function.Consumer<State> afterCallback)
Execute the given side effect callback after events, if any, are persisted.
|
abstract EffectImpl<Event,State> |
andThen(scala.Function1<State,scala.runtime.BoxedUnit> afterCallback)
Execute the given side effect callback after events, if any, are persisted.
|
public abstract scala.Function1<State,scala.runtime.BoxedUnit> afterCallback()
public final EffectImpl<Event,State> andThen(java.util.function.Consumer<State> afterCallback)
Effectpublic abstract EffectImpl<Event,State> andThen(scala.Function1<State,scala.runtime.BoxedUnit> afterCallback)
Effect