Uses of Interface
solar.service.fap.DataSource

Packages that use DataSource
solar.service.dan Contains DAN (Data Aggregation Network) service and related classes. 
solar.service.fap Contains FAP (Filter-and-Pipe) service and related classes. 
 

Uses of DataSource in solar.service.dan
 

Classes in solar.service.dan that implement DataSource
(package private)  class NodeHandler
          The wrapper class of graph nodes through which the resident sources and operators interact with other services of the local Planet.
 

Uses of DataSource in solar.service.fap
 

Subinterfaces of DataSource in solar.service.fap
 interface Filter
          Filter is one component that processes one or more incoming data streams and produces another one.
 

Fields in solar.service.fap declared as DataSource
protected  DataSource LocalSourceChannel._source
           
 

Methods in solar.service.fap that return DataSource
 DataSource LocalSourceChannel.getDataSource()
           
 DataSource RemoteSourceChannel.getDataSource()
           
 DataSource SourceChannel.getDataSource()
          Return the data source of this pipe.
 

Methods in solar.service.fap with parameters of type DataSource
 void LocalSourceChannel.attachDataSource(DataSource source, OutputPort outport)
           
 Id FapClientService.pconnect(Id pid, int type, DataSource source, OutputPort outport, DataSink sink, InputPort inport)
           
 Id FapClientService.pconnect(Id pid, int type, DataSource source, OutputPort outport, Address raddr, Id rpid, InputPort inport, boolean client)
           
 void RemoteSourceChannel.attachDataSource(DataSource source, OutputPort outport)
           
 void SourceChannel.attachDataSource(DataSource source, OutputPort outport)
          Attach a data source to this pipe.
 Id FapService.pconnect(Id pid, int type, DataSource source, OutputPort outport, DataSink sink, InputPort inport)
          Setup a local pipe and return the pipe ID.
 Id FapService.pconnect(Id pid, int type, DataSource source, OutputPort outport, Address raddr, Id rpid, InputPort inport, boolean client)
          Setup a pipe that has a remote sink.
 

Constructors in solar.service.fap with parameters of type DataSource
LocalSourceChannel(DataSource source, OutputPort outport)
          Constructs a source channel wit specified data source attached.