Uses of Interface
seda.sandStorm.api.SourceIF

Packages that use SourceIF
seda.sandStorm.api   
seda.sandStorm.api.internal   
seda.sandStorm.core   
seda.sandStorm.internal   
seda.sandStorm.lib.aDisk   
seda.sandStorm.lib.aSocket   
seda.sandStorm.lib.aSocket.nbio   
seda.sandStorm.lib.aSocket.nio   
 

Uses of SourceIF in seda.sandStorm.api
 

Subinterfaces of SourceIF in seda.sandStorm.api
 interface QueueIF
          A QueueIF implements a finite-length event queue.
 

Uses of SourceIF in seda.sandStorm.api.internal
 

Methods in seda.sandStorm.api.internal that return SourceIF
 SourceIF StageWrapperIF.getSource()
          Return the source from which events should be pulled to pass to this EventHandlerIF.
 

Uses of SourceIF in seda.sandStorm.core
 

Classes in seda.sandStorm.core that implement SourceIF
 class FiniteQueue
          The FiniteQueue class is a simple implementation of the QueueIF interface, using a linked list.
 

Uses of SourceIF in seda.sandStorm.internal
 

Fields in seda.sandStorm.internal declared as SourceIF
(package private)  SourceIF AggTPSThreadManager.threadPool.source
           
protected  SourceIF TPSThreadManager.stageRunnable.source
           
 

Methods in seda.sandStorm.internal that return SourceIF
 SourceIF StageWrapper.getSource()
          Return the set of sources from which events should be pulled to pass to this EventHandlerIF.
 

Constructors in seda.sandStorm.internal with parameters of type SourceIF
AggTPSThreadManager.appThread(StageWrapperIF wrapper, SourceIF source, java.lang.String name, AggTPSThreadManager.threadPool tp)
           
AggTPSThreadManager.threadPool(StageWrapperIF wrapper, SourceIF source)
           
 

Uses of SourceIF in seda.sandStorm.lib.aDisk
 

Methods in seda.sandStorm.lib.aDisk that return SourceIF
 SourceIF AFileTPStageWrapper.getSource()
          Return the source from which events should be pulled to pass to this EventHandlerIF.
 

Uses of SourceIF in seda.sandStorm.lib.aSocket
 

Subinterfaces of SourceIF in seda.sandStorm.lib.aSocket
 interface SelectSourceIF
          A SelectSource is an implementation of SourceIF which pulls events from the operating system via the NBIO SelectSet interface.
 

Fields in seda.sandStorm.lib.aSocket declared as SourceIF
protected  SourceIF aSocketThreadManager.aSocketThread.eventQ
           
 

Methods in seda.sandStorm.lib.aSocket that return SourceIF
 SourceIF aSocketStageWrapper.getSource()
          Return the source from which events should be pulled to pass to this EventHandlerIF.
(package private)  SourceIF aSocketStageWrapper.getEventQueue()
           
 

Methods in seda.sandStorm.lib.aSocket with parameters of type SourceIF
protected abstract  boolean DatagramSockState.addWriteRequest(aSocketRequest req, SourceIF write_selsource)
           
 

Uses of SourceIF in seda.sandStorm.lib.aSocket.nbio
 

Classes in seda.sandStorm.lib.aSocket.nbio that implement SourceIF
 class SelectSource
          A SelectSource is an implementation of SourceIF which pulls events from the operating system via the NBIO SelectSet interface.
 

Methods in seda.sandStorm.lib.aSocket.nbio with parameters of type SourceIF
protected  boolean DatagramSockState.addWriteRequest(aSocketRequest req, SourceIF write_selsource)
           
 

Uses of SourceIF in seda.sandStorm.lib.aSocket.nio
 

Classes in seda.sandStorm.lib.aSocket.nio that implement SourceIF
 class NIOSelectSource
          A NIOSelectSource is an implementation of SourceIF which pulls events from the operating system via the NIO Selector interface.
 

Methods in seda.sandStorm.lib.aSocket.nio with parameters of type SourceIF
protected  boolean DatagramSockState.addWriteRequest(aSocketRequest req, SourceIF write_selsource)