Uses of Class
solar.service.fap.InputPort

Packages that use InputPort
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 InputPort in solar.service.dan
 

Methods in solar.service.dan that return InputPort
 InputPort[] NodeHandler.getInputPorts()
           
 

Methods in solar.service.dan with parameters of type InputPort
 void NodeHandler.attachInputPipe(Pipe pipe, InputPort inport)
           
 void NodeHandler.pushData(java.lang.Object data, InputPort inport)
           
 

Uses of InputPort in solar.service.fap
 

Fields in solar.service.fap declared as InputPort
protected  InputPort LocalSinkChannel._inport
           
protected  InputPort RemoteSinkChannel._inport
           
 

Methods in solar.service.fap that return InputPort
 InputPort LocalSinkChannel.getInputPort()
           
 InputPort RemoteSinkChannel.getRemoteInputPort()
          Return the input port of the remote sink.
 InputPort RemoteSinkChannel.getInputPort()
           
 InputPort SinkChannel.getInputPort()
          Return the input port of the connected sink.
 InputPort[] DataSink.getInputPorts()
          Return all the input ports in an array.
 

Methods in solar.service.fap with parameters of type InputPort
 void LocalSinkChannel.attachDataSink(DataSink sink, InputPort inport)
           
 Id FapClientService.pconnect(Id pid, int type, DataSource source, OutputPort outport, DataSink sink, InputPort inport)
           
 Id FapClientService.pconnect(Id pid, int type, Address raddr, Id rpid, OutputPort outport, DataSink sink, InputPort inport, boolean client)
           
 Id FapClientService.pconnect(Id pid, int type, DataSource source, OutputPort outport, Address raddr, Id rpid, InputPort inport, boolean client)
           
 void RemoteSinkChannel.attachDataSink(DataSink sink, InputPort inport)
           
 void SinkChannel.attachDataSink(DataSink sink, InputPort inport)
          Attach a data sink to this pipe.
 void DataSink.attachInputPipe(Pipe pipe, InputPort inport)
          Attach an input pipe to this data sink.
 void DataSink.pushData(java.lang.Object data, InputPort inport)
          Push data to this data sink at a specific port.
 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, Address raddr, Id rpid, OutputPort outport, DataSink sink, InputPort inport, boolean client)
          Setup a pipe that has a remote source.
 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 InputPort
LocalSinkChannel(DataSink sink, InputPort inport)
          Constructs a sink channel wit specified data source attached.
RemoteSinkChannel(Address addr, Id pid, InputPort inport)
          Constructs a remote channel with remote address and pipe ID (for sink).