Uses of Interface
org.praxislive.core.Port
-
Packages that use Port Package Description org.praxislive.audio org.praxislive.base org.praxislive.code org.praxislive.core org.praxislive.video -
-
Uses of Port in org.praxislive.audio
Classes in org.praxislive.audio that implement Port Modifier and Type Class Description class
AudioPort
static class
AudioPort.Input
static class
AudioPort.Output
class
DefaultAudioInputPort
class
DefaultAudioOutputPort
Methods in org.praxislive.audio with parameters of type Port Modifier and Type Method Description void
AudioPort.Input. connect(Port port)
void
DefaultAudioOutputPort. connect(Port port)
void
AudioPort.Input. disconnect(Port port)
void
DefaultAudioOutputPort. disconnect(Port port)
-
Uses of Port in org.praxislive.base
Methods in org.praxislive.base that return Port Modifier and Type Method Description Port
AbstractComponent. getPort(String id)
Port
AbstractRootContainer. getPort(String id)
Methods in org.praxislive.base with parameters of type Port Modifier and Type Method Description protected void
AbstractComponent. registerPort(String id, Port port)
-
Uses of Port in org.praxislive.code
Classes in org.praxislive.code that implement Port Modifier and Type Class Description class
ControlInput
class
ControlOutput
class
DataPort<T>
static class
DataPort.Input<T>
static class
DataPort.Output<T>
class
RefPort<T>
Ports for sharing Ref values.static class
RefPort.Input<T>
Ref input, linked toRef.In
implementation.static class
RefPort.Output<T>
Output port linked toRef
implementation.Methods in org.praxislive.code that return Port Modifier and Type Method Description Port
CodeComponent. getPort(String id)
Port
CodeContainer. getPort(String id)
protected Port
CodeContext. getPort(String id)
Get the port with the specified ID, or null if there isn't one.abstract Port
PortDescriptor. getPort()
Get the wrapped port.Methods in org.praxislive.code that return types with arguments of type Port Modifier and Type Method Description List<? extends Port>
RefPort.Input. connections()
List<? extends Port>
RefPort.Output. connections()
Methods in org.praxislive.code with parameters of type Port Modifier and Type Method Description abstract void
PortDescriptor. attach(CodeContext<?> context, Port previous)
Configure the port for the provided context.void
ControlOutput. connect(Port port)
void
DataPort.Input. connect(Port port)
void
DataPort.Output. connect(Port port)
void
RefPort.Input. connect(Port port)
void
RefPort.Output. connect(Port port)
void
ControlOutput. disconnect(Port port)
void
DataPort.Input. disconnect(Port port)
void
DataPort.Output. disconnect(Port port)
void
RefPort.Input. disconnect(Port port)
void
RefPort.Output. disconnect(Port port)
-
Uses of Port in org.praxislive.core
Classes in org.praxislive.core with type parameters of type Port Modifier and Type Class Description static class
Port.Type<T extends Port>
Classes in org.praxislive.core that implement Port Modifier and Type Class Description class
ControlPort
static class
ControlPort.Input
static class
ControlPort.Output
Methods in org.praxislive.core with type parameters of type Port Modifier and Type Method Description static <T extends Port>
Port.Type<T>Port.Type. of(Class<T> baseClass)
Methods in org.praxislive.core that return Port Modifier and Type Method Description Port
Component. getPort(String id)
Get the Port with the given ID, or null if it does not exist.Methods in org.praxislive.core that return types with arguments of type Port Modifier and Type Method Description List<? extends Port>
Port. connections()
static Optional<Port.Type<? extends Port>>
Port.Type. fromName(String name)
Port.Type<? extends Port>
PortInfo. portType()
Methods in org.praxislive.core with parameters of type Port Modifier and Type Method Description void
ControlPort.Input. connect(Port port)
void
Port. connect(Port port)
void
PortListener. connectionsChanged(Port source)
void
ControlPort.Input. disconnect(Port port)
void
Port. disconnect(Port port)
default boolean
Port. isConnectedTo(Port port)
Method parameters in org.praxislive.core with type arguments of type Port Modifier and Type Method Description static PortInfo
PortInfo. create(Class<? extends Port> typeClass, PortInfo.Direction direction, PMap properties)
Info.PortInfoBuilder
Info.PortInfoChooser. input(Class<? extends Port> type)
Create a PortInfoBuilder for input ports of the provided base type.Info.PortInfoBuilder
Info.PortInfoChooser. output(Class<? extends Port> type)
Create a PortInfoBuilder for output ports of the provided base type. -
Uses of Port in org.praxislive.video
Classes in org.praxislive.video that implement Port Modifier and Type Class Description class
DefaultVideoInputPort
class
DefaultVideoOutputPort
class
VideoPort
static class
VideoPort.Input
static class
VideoPort.Output
Methods in org.praxislive.video with parameters of type Port Modifier and Type Method Description void
DefaultVideoOutputPort. connect(Port port)
void
VideoPort.Input. connect(Port port)
void
DefaultVideoOutputPort. disconnect(Port port)
void
VideoPort.Input. disconnect(Port port)
-