Home | History | Annotate | Download | only in facade

Lines Matching defs:events

58  * Events are automatically entered into the Event Queue following API calls such as startSensing()
60 * The Event Facade provides control over how events are entered into (and removed from) the Event
62 * The Event Queue provides a useful means of recording background events (such as sensor data) when
68 * The maximum length of the event queue. Old events will be discarded when this limit is
93 @Rpc(description = "Clears all events from the event buffer.")
105 description = "Should this events be added to the event queue or only dispatched") @RpcDefault(value = "true") Boolean enqueue) {
159 @Rpc(description = "Returns and removes the oldest n events (i.e. location or sensor update, etc.) from the event buffer.",
163 List<Event> events = Lists.newArrayList();
169 events.add(event);
171 return events;
239 public void onEventReceived(Event event) { // set up observer for any events.
282 description = "Set to False if you don't want your events to be added to the event queue, just dispatched.") @RpcOptional @RpcDefault("false") Boolean enqueue) {
350 @Rpc(description = "Opens up a socket where you can read for events posted")