Interface ScheduledEventManager

All Superinterfaces:
AuditableRestAction<Void>, Manager<ScheduledEventManager>, RestAction<Void>

public interface ScheduledEventManager extends Manager<ScheduledEventManager>
The Manager is providing functionality to update one or more fields of a ScheduledEvent.
The manager may also be used to start, cancel or end events.

Example


 manager.setLocation("at the beach")
     .setStartTime(OffsetDateTime.now().plusHours(1))
     .setEndTime(OffsetDateTime.now().plusHours(3))
     .setName("Discussing Turtle Shells")
     .queue();
 
See Also: