java.lang.Object
org.praxislive.code.userapi.Data.Pipe<T>
org.praxislive.code.userapi.Data.Out<T>
- Type Parameters:
T- data type
- Enclosing class:
Data
Output port pipe.
Create using eg. @Out Data.Out<TYPE> in;
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected voidprocess(List<Data.Packet<T>> data) Process the data.Methods inherited from class org.praxislive.code.userapi.Data.Pipe
addSource, clearCaches, disconnectSinks, disconnectSources, isOutputRequired, isOutputRequired, linkTo, process, registerSink, registerSource, removeSource, sinks, sources, unregisterSink, unregisterSource, withSources, writeOutput
-
Constructor Details
-
Out
public Out()
-
-
Method Details
-
process
Description copied from class:Data.PipeProcess the data.If there is only one sink, and zero or one sources, the packet will be the one provided by the sink. In other cases the data is cached, and written to the sink(s) in
Data.Pipe.writeOutput(java.util.List, org.praxislive.code.userapi.Data.Packet, int).
-