Interface IEventOutbox
Assembly: Volo.Abp.EventBus.Abstractions.dll
Syntax
public interface IEventOutbox
Methods
DeleteAsync(Guid)
Declaration
Task DeleteAsync(Guid id)
Parameters
Type |
Name |
Description |
Guid |
id |
|
Returns
DeleteManyAsync(IEnumerable<Guid>)
Declaration
Task DeleteManyAsync(IEnumerable<Guid> ids)
Parameters
Returns
EnqueueAsync(OutgoingEventInfo)
Declaration
Task EnqueueAsync(OutgoingEventInfo outgoingEvent)
Parameters
Returns
GetWaitingEventsAsync(int, CancellationToken)
Declaration
Task<List<OutgoingEventInfo>> GetWaitingEventsAsync(int maxCount, CancellationToken cancellationToken = default)
Parameters
Returns
Extension Methods