Class StubEventScheduler

java.lang.Object
org.axonframework.test.eventscheduler.StubEventScheduler
All Implemented Interfaces:
EventScheduler

public class StubEventScheduler extends Object implements EventScheduler
EventScheduler implementation that uses it's own concept of "Current Time" for the purpose of testing. Instead of publishing events, it allows (test) classes to obtain a reference to scheduled events for a certain time frame.

To obtain scheduled events, the conceptual "current time" of the Scheduler must be advanced. All events that have been scheduled within the advanced time frame are returned. It is up to the calling class to decide what to do with these events.

Since:
1.1
Author:
Allard Buijze
  • Constructor Details

    • StubEventScheduler

      public StubEventScheduler()
      Creates an instance of the StubScheduler that uses the current date time as its conceptual "current time". Unlike the real "current time", the time of the Event Scheduler is fixed.
    • StubEventScheduler

      public StubEventScheduler(TemporalAccessor currentDateTime)
      Creates an instance of the StubScheduler that uses the given currentDateTime as its conceptual "current time".
      Parameters:
      currentDateTime - The instant to use as current Date and Time
  • Method Details

    • initializeAt

      public void initializeAt(TemporalAccessor currentDateTime)
      Resets the initial "current time" of this SubEventScheduler. Must be called before any events are scheduled
      Parameters:
      currentDateTime - The instant to use as the current Date and Time
      Throws:
      IllegalStateException - when calling this method after events are scheduled
    • schedule

      public ScheduleToken schedule(Instant triggerDateTime, Object event)
      Description copied from interface: EventScheduler
      Schedule the given event for publication at the given triggerDateTime. The returned ScheduleToken can be used to cancel the planned publication.

      The given event may be any object, as well as an EventMessage. In the latter case, the instance provided is the donor for the payload and Meta Data of the actual message being dispatched. In the former case, the given event will be wrapped as the payload of an EventMessage.

      Specified by:
      schedule in interface EventScheduler
      Parameters:
      triggerDateTime - The moment to trigger publication of the event
      event - The event to publish
      Returns:
      the token to use when cancelling the schedule
    • schedule

      public ScheduleToken schedule(Duration triggerDuration, Object event)
      Description copied from interface: EventScheduler
      Schedule the given event for publication after the given triggerDuration. The returned ScheduleToken can be used to cancel the planned publication.

      The given event may be any object, as well as an EventMessage. In the latter case, the instance provided is the donor for the payload and Meta Data of the actual message being dispatched. In the former case, the given event will be wrapped as the payload of an EventMessage.

      Specified by:
      schedule in interface EventScheduler
      Parameters:
      triggerDuration - The amount of time to wait before publishing the event
      event - The event to publish
      Returns:
      the token to use when cancelling the schedule
    • cancelSchedule

      public void cancelSchedule(ScheduleToken scheduleToken)
      Description copied from interface: EventScheduler
      Cancel the publication of a scheduled event. If the events has already been published, this method does nothing.
      Specified by:
      cancelSchedule in interface EventScheduler
      Parameters:
      scheduleToken - the token returned when the event was scheduled
    • getScheduledItems

      public List<ScheduledItem> getScheduledItems()
      Returns a view of all the scheduled Events at the time this method is called.
      Returns:
      a view of all the scheduled Events at the time this method is called
    • getCurrentDateTime

      public Instant getCurrentDateTime()
      Returns the "Current Date Time" as used by the scheduler.
      Returns:
      the "Current Date Time" as used by the scheduler
    • advanceToNextTrigger

      public EventMessage advanceToNextTrigger()
      Advances the "current time" of the scheduler to the next scheduled Event, and returns that event. In theory, this may cause "current time" to move backwards.
      Returns:
      the first event scheduled
    • advanceTimeTo

      public void advanceTimeTo(Instant newDateTime, EventConsumer<EventMessage<?>> eventConsumer)
      Advance time to the given newDateTime and invokes the given eventConsumer for each event scheduled for publication until that time.
      Parameters:
      newDateTime - The time to advance the "current time" of the scheduler to
      eventConsumer - The function to invoke for each event to trigger
    • advanceTimeBy

      public void advanceTimeBy(Duration duration, EventConsumer<EventMessage<?>> eventConsumer)
      Advance time by the given duration and invokes the given eventConsumer for each event scheduled for publication until that time.
      Parameters:
      duration - The amount of time to advance the "current time" of the scheduler with
      eventConsumer - The function to invoke for each event to trigger