Uses of Class
org.openbandy.event.EventSource

Packages that use EventSource
org.openbandy.event   
org.openbandy.example.test   
org.openbandy.net.client   
org.openbandy.service   
 

Uses of EventSource in org.openbandy.event
 

Methods in org.openbandy.event that return EventSource
 EventSource EventSourceBroker.getEventSource(java.lang.Integer index)
          Return the reference to an EventSource from the pool
 EventSource EventSourceBroker.getNewEventSourceInstance(java.lang.Integer index)
          Creates a new instance of the EventSource that is stored with the given index and replaces the old with the new instance.
abstract  EventSource EventSource.newlyInstantiate()
          As the EventService must eventually create new instances of an EventSource in order to restart it, an EventSource must provide this method which must create (and return) a new instance and subsequently reset its reference in the class owning it.
 

Methods in org.openbandy.event with parameters of type EventSource
 java.lang.Integer EventSourceBroker.addEventSource(EventSource eventSource)
          Add an EventSource instance to the broker's pool
 java.lang.Integer EventSourceBroker.getEventSourceIndex(EventSource eventSource)
          Return the index of an EventSource instance in the pool
 boolean EventSourceBroker.removeEventSource(EventSource eventSource)
          Remove an EventSource from the pool
 void EventSourceOwner.setNewInstance(EventSource newEventSourceInstance)
          Call-back to update a reference to an EventSource
 

Uses of EventSource in org.openbandy.example.test
 

Subclasses of EventSource in org.openbandy.example.test
 class EventSourceSimulation
          An example EventSource that dispatches a number of test events every 500 milliseconds.
 

Methods in org.openbandy.example.test that return EventSource
 EventSource EventSourceSimulation.newlyInstantiate()
           
 

Methods in org.openbandy.example.test with parameters of type EventSource
 void EventServiceTest.setNewInstance(EventSource newEventSourceInstance)
           
 

Uses of EventSource in org.openbandy.net.client
 

Subclasses of EventSource in org.openbandy.net.client
 class MmsScanner
          TODO describe purpose and usage

(c) Copyright Philipp Bolliger 2007, ALL RIGHTS RESERVED.
 class SmsScanner
          TODO describe purpose and usage

(c) Copyright Philipp Bolliger 2007, ALL RIGHTS RESERVED.
 

Methods in org.openbandy.net.client that return EventSource
 EventSource MmsScanner.newlyInstantiate()
           
 EventSource SmsScanner.newlyInstantiate()
           
 

Uses of EventSource in org.openbandy.service
 

Methods in org.openbandy.service with parameters of type EventSource
static void EventService.registerSource(EventSource eventSource)
          This method registers an EventSource with every type of event it provides.
static void EventService.unregisterSource(EventSource eventSource)
          Unregister an EventSource.