Uses of Interface
org.xwiki.eventstream.Event
-
Packages that use Event Package Description org.xwiki.eventstream -
-
Uses of Event in org.xwiki.eventstream
Methods in org.xwiki.eventstream that return Event Modifier and Type Method Description Event
RecordableEventConverter. convert(RecordableEvent recordableEvent, String source, Object data)
Convert a notification event to a stream event.Event
EventFactory. createEvent()
Create a new event with some fields already filled in.Event
EventFactory. createRawEvent()
Create a new event without any of the fields filled in.Event
EntityEvent. getEvent()
Event
EventGroup. getMainEvent()
Get the most important event in this group.Methods in org.xwiki.eventstream that return types with arguments of type Event Modifier and Type Method Description CompletableFuture<Optional<Event>>
EventStore. deleteEvent(String eventId)
Asynchronously deleted the event matching the passed identifier and all associated statuses.CompletableFuture<Optional<Event>>
EventStore. deleteEvent(Event event)
Asynchronously deleted the event.Optional<Event>
EventStore. getEvent(String eventId)
Get the event matching the passed identifier.Set<Event>
EventGroup. getEvents()
List the events that are part of this group.CompletableFuture<Event>
EventStore. prefilterEvent(Event event)
Asynchronously update the event to indicate that it's been pre filtered.CompletableFuture<Event>
EventStore. saveEvent(Event event)
Asynchronously save in the store the given event.Stream<Event>
EventSearchResult. stream()
Methods in org.xwiki.eventstream with parameters of type Event Modifier and Type Method Description void
EventGroup. addEvents(Event... events)
Add more events to this group.CompletableFuture<Optional<Event>>
EventStore. deleteEvent(Event event)
Asynchronously deleted the event.CompletableFuture<Event>
EventStore. prefilterEvent(Event event)
Asynchronously update the event to indicate that it's been pre filtered.CompletableFuture<Event>
EventStore. saveEvent(Event event)
Asynchronously save in the store the given event.Method parameters in org.xwiki.eventstream with type arguments of type Event Modifier and Type Method Description default List<EventStatus>
EventStore. getEventStatuses(Collection<Event> events, Collection<String> entityIds)
Get the list of statuses concerning the given events and the given entities.Constructors in org.xwiki.eventstream with parameters of type Event Constructor Description EventGroup(Event... events)
Constructor that creates a group containing the passed events.Constructor parameters in org.xwiki.eventstream with type arguments of type Event Constructor Description EventGroup(List<Event> events)
Constructor that creates a group containing the passed events.EventGroup(Set<Event> events)
Constructor that creates a group containing the passed events.
-