| Package | Description |
|---|---|
| io.axoniq.axonserver.connector.event | |
| io.axoniq.axonserver.connector.event.impl | |
| io.axoniq.axonserver.grpc.event |
| Modifier and Type | Method and Description |
|---|---|
Event |
AggregateEventStream.next()
Returns the next available event, possibly blocking until one becomes available for reading.
|
| Modifier and Type | Method and Description |
|---|---|
default Stream<Event> |
AggregateEventStream.asStream()
Returns a Stream that consumes the Events from this instance.
|
| Modifier and Type | Method and Description |
|---|---|
AppendEventsTransaction |
AppendEventsTransaction.appendEvent(Event event)
Append the given event to be committed as part of this transaction.
|
default CompletableFuture<Confirmation> |
EventChannel.appendEvents(Event... events)
Append the given
events to the Event Store. |
CompletableFuture<Confirmation> |
EventChannel.appendSnapshot(Event snapshotEvent)
Store the given
snapshotEvent. |
default CompletableFuture<String> |
EventChannel.reschedule(String scheduleToken,
Duration triggerDuration,
Event event)
Convenience method to cancel the scheduled event with given
scheduleToken and reschedule the given event to be published after given triggerDuration. |
CompletableFuture<String> |
EventChannel.reschedule(String scheduleToken,
Instant scheduleTime,
Event event)
Convenience method to cancel the scheduled event with given
scheduleToken and reschedule the given event to be published at given scheduleTime. |
default CompletableFuture<String> |
EventChannel.scheduleEvent(Duration triggerDuration,
Event event)
Schedule the given
event to be published after given triggerDuration. |
CompletableFuture<String> |
EventChannel.scheduleEvent(Instant scheduleTime,
Event event)
Schedule the given
event to be published at given scheduleTime. |
| Modifier and Type | Method and Description |
|---|---|
Event |
BufferedAggregateEventStream.next() |
protected Event |
BufferedAggregateEventStream.terminalMessage() |
| Modifier and Type | Method and Description |
|---|---|
AppendEventsTransaction |
AppendEventsTransactionImpl.appendEvent(Event event) |
CompletableFuture<Confirmation> |
EventChannelImpl.appendSnapshot(Event snapshotEvent) |
CompletableFuture<String> |
EventChannelImpl.reschedule(String scheduleToken,
Instant scheduleTime,
Event event) |
CompletableFuture<String> |
EventChannelImpl.scheduleEvent(Instant scheduleTime,
Event event) |
| Constructor and Description |
|---|
AppendEventsTransactionImpl(io.grpc.stub.StreamObserver<Event> stream,
CompletableFuture<Confirmation> result)
Constructs a
AppendEventsTransactionImpl used to append events to the Event Store. |
| Modifier and Type | Method and Description |
|---|---|
Event |
Event.Builder.build() |
Event |
Event.Builder.buildPartial() |
static Event |
Event.getDefaultInstance() |
Event |
Event.getDefaultInstanceForType() |
Event |
Event.Builder.getDefaultInstanceForType() |
Event |
ScheduleEventRequestOrBuilder.getEvent()
the event to publish
|
Event |
RescheduleEventRequest.getEvent()
the event to publish
|
Event |
RescheduleEventRequest.Builder.getEvent()
the event to publish
|
Event |
EventWithToken.getEvent()
The actual Event Message
|
Event |
EventWithToken.Builder.getEvent()
The actual Event Message
|
Event |
RescheduleEventRequestOrBuilder.getEvent()
the event to publish
|
Event |
ScheduleEventRequest.getEvent()
the event to publish
|
Event |
ScheduleEventRequest.Builder.getEvent()
the event to publish
|
Event |
EventWithTokenOrBuilder.getEvent()
The actual Event Message
|
static Event |
Event.parseDelimitedFrom(InputStream input) |
static Event |
Event.parseDelimitedFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static Event |
Event.parseFrom(byte[] data) |
static Event |
Event.parseFrom(byte[] data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static Event |
Event.parseFrom(ByteBuffer data) |
static Event |
Event.parseFrom(ByteBuffer data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static Event |
Event.parseFrom(com.google.protobuf.ByteString data) |
static Event |
Event.parseFrom(com.google.protobuf.ByteString data,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static Event |
Event.parseFrom(com.google.protobuf.CodedInputStream input) |
static Event |
Event.parseFrom(com.google.protobuf.CodedInputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
static Event |
Event.parseFrom(InputStream input) |
static Event |
Event.parseFrom(InputStream input,
com.google.protobuf.ExtensionRegistryLite extensionRegistry) |
| Modifier and Type | Method and Description |
|---|---|
io.grpc.stub.StreamObserver<Event> |
EventStoreGrpc.EventStoreImplBase.appendEvent(io.grpc.stub.StreamObserver<Confirmation> responseObserver)
Accepts a stream of Events returning a Confirmation when completed.
|
io.grpc.stub.StreamObserver<Event> |
EventStoreGrpc.EventStoreStub.appendEvent(io.grpc.stub.StreamObserver<Confirmation> responseObserver)
Accepts a stream of Events returning a Confirmation when completed.
|
static io.grpc.MethodDescriptor<Event,Confirmation> |
EventStoreGrpc.getAppendEventMethod() |
static io.grpc.MethodDescriptor<Event,Confirmation> |
EventStoreGrpc.getAppendSnapshotMethod() |
static io.grpc.MethodDescriptor<GetAggregateEventsRequest,Event> |
EventStoreGrpc.getListAggregateEventsMethod() |
static io.grpc.MethodDescriptor<GetAggregateSnapshotsRequest,Event> |
EventStoreGrpc.getListAggregateSnapshotsMethod() |
com.google.protobuf.Parser<Event> |
Event.getParserForType() |
Iterator<Event> |
EventStoreGrpc.EventStoreBlockingStub.listAggregateEvents(GetAggregateEventsRequest request)
Retrieves the Events for a given aggregate.
|
Iterator<Event> |
EventStoreGrpc.EventStoreBlockingStub.listAggregateSnapshots(GetAggregateSnapshotsRequest request)
Retrieves the Snapshots for a given aggregate.
|
static com.google.protobuf.Parser<Event> |
Event.parser() |
| Modifier and Type | Method and Description |
|---|---|
Confirmation |
EventStoreGrpc.EventStoreBlockingStub.appendSnapshot(Event request)
Accepts a Snapshot event returning a Confirmation when completed.
|
com.google.common.util.concurrent.ListenableFuture<Confirmation> |
EventStoreGrpc.EventStoreFutureStub.appendSnapshot(Event request)
Accepts a Snapshot event returning a Confirmation when completed.
|
void |
EventStoreGrpc.EventStoreImplBase.appendSnapshot(Event request,
io.grpc.stub.StreamObserver<Confirmation> responseObserver)
Accepts a Snapshot event returning a Confirmation when completed.
|
void |
EventStoreGrpc.EventStoreStub.appendSnapshot(Event request,
io.grpc.stub.StreamObserver<Confirmation> responseObserver)
Accepts a Snapshot event returning a Confirmation when completed.
|
RescheduleEventRequest.Builder |
RescheduleEventRequest.Builder.mergeEvent(Event value)
the event to publish
|
EventWithToken.Builder |
EventWithToken.Builder.mergeEvent(Event value)
The actual Event Message
|
ScheduleEventRequest.Builder |
ScheduleEventRequest.Builder.mergeEvent(Event value)
the event to publish
|
Event.Builder |
Event.Builder.mergeFrom(Event other) |
static Event.Builder |
Event.newBuilder(Event prototype) |
RescheduleEventRequest.Builder |
RescheduleEventRequest.Builder.setEvent(Event value)
the event to publish
|
EventWithToken.Builder |
EventWithToken.Builder.setEvent(Event value)
The actual Event Message
|
ScheduleEventRequest.Builder |
ScheduleEventRequest.Builder.setEvent(Event value)
the event to publish
|
| Modifier and Type | Method and Description |
|---|---|
void |
EventStoreGrpc.EventStoreImplBase.listAggregateEvents(GetAggregateEventsRequest request,
io.grpc.stub.StreamObserver<Event> responseObserver)
Retrieves the Events for a given aggregate.
|
void |
EventStoreGrpc.EventStoreStub.listAggregateEvents(GetAggregateEventsRequest request,
io.grpc.stub.StreamObserver<Event> responseObserver)
Retrieves the Events for a given aggregate.
|
void |
EventStoreGrpc.EventStoreImplBase.listAggregateSnapshots(GetAggregateSnapshotsRequest request,
io.grpc.stub.StreamObserver<Event> responseObserver)
Retrieves the Snapshots for a given aggregate.
|
void |
EventStoreGrpc.EventStoreStub.listAggregateSnapshots(GetAggregateSnapshotsRequest request,
io.grpc.stub.StreamObserver<Event> responseObserver)
Retrieves the Snapshots for a given aggregate.
|
Copyright © 2020–2022 AxonIQ BV. All rights reserved.