| EventsourcedPersistAllTEvent Method |
Asynchronously persists series of
events in specified order.
This is equivalent of multiple calls of
PersistTEvent(TEvent, ActionTEvent) calls
with the same handler, except that events are persisted atomically with this method.
Namespace:
Akka.Persistence
Assembly:
Akka.Persistence (in Akka.Persistence.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public void PersistAll<TEvent>(
IEnumerable<TEvent> events,
Action<TEvent> handler
)
member PersistAll :
events : IEnumerable<'TEvent> *
handler : Action<'TEvent> -> unit
Parameters
- events
- Type: System.Collections.GenericIEnumerableTEvent
TBD - handler
- Type: SystemActionTEvent
TBD
Type Parameters
- TEvent
- TBD
See Also