Method | Description | |
---|---|---|
Acknowledge ( IEnumerable |
Acknowledge that a message have completed processing (this will tell the server it has been processed) There is no need to ack a message if you have Auto Ack enabled |
|
Acknowledge ( EventStore.ClientAPI.ResolvedEvent @event ) : void |
Acknowledge that a message have completed processing (this will tell the server it has been processed) There is no need to ack a message if you have Auto Ack enabled |
|
Fail ( IEnumerable |
Mark nmessages that have failed processing. The server will take action based upon the action parameter
|
|
Fail ( EventStore.ClientAPI.ResolvedEvent @event, PersistentSubscriptionNakEventAction action, string reason ) : void |
Mark a message failed processing. The server will be take action based upon the action paramter
|
|
Stop ( System.TimeSpan timeout ) : void |
Disconnects this client from the persistent subscriptions.
|
Method | Description | |
---|---|---|
DropSubscription ( SubscriptionDropReason reason, |
||
Enqueue ( EventStore.ClientAPI.ResolvedEvent resolvedEvent ) : void | ||
EnqueueSubscriptionDropNotification ( SubscriptionDropReason reason, |
||
EventStorePersistentSubscriptionBase ( string subscriptionId, string streamId, ResolvedEvent>.Action |
||
OnEventAppeared ( EventStore.ClientAPI.EventStoreSubscription subscription, EventStore.ClientAPI.ResolvedEvent resolvedEvent ) : void | ||
OnSubscriptionDropped ( EventStore.ClientAPI.EventStoreSubscription subscription, SubscriptionDropReason reason, |
||
ProcessQueue ( ) : void | ||
Start ( ) : Task |
||
StartSubscription ( string subscriptionId, string streamId, int bufferSize, EventStore.ClientAPI.SystemData.UserCredentials userCredentials, ResolvedEvent>.Action |
public Acknowledge ( IEnumerable |
||
events | IEnumerable |
The |
return | void |
public Acknowledge ( EventStore.ClientAPI.ResolvedEvent @event ) : void | ||
@event | EventStore.ClientAPI.ResolvedEvent | |
return | void |
public Fail ( IEnumerable |
||
events | IEnumerable |
The events to mark as failed |
action | PersistentSubscriptionNakEventAction | The |
reason | string | A string with a message as to why the failure is occurring |
return | void |
public Fail ( EventStore.ClientAPI.ResolvedEvent @event, PersistentSubscriptionNakEventAction action, string reason ) : void | ||
@event | EventStore.ClientAPI.ResolvedEvent | |
action | PersistentSubscriptionNakEventAction | The |
reason | string | A string with a message as to why the failure is occurring |
return | void |
public Stop ( System.TimeSpan timeout ) : void | ||
timeout | System.TimeSpan | |
return | void |