use of inputport.datacomm.simplex.object.ASimplexObjectInputPortLauncherSupport in project GIPC by pdewan.
the class CopyOfAnAbstractPortLauncher method registerDefaultPortLauncherSupport.
protected void registerDefaultPortLauncherSupport() {
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.SIMPLEX, PortMessageKind.BUFFER), new ASimplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.SIMPLEX, PortMessageKind.BUFFER), new ASimplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.SIMPLEX, PortMessageKind.OBJECT), new ASimplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.SIMPLEX, PortMessageKind.OBJECT), new ASimplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.BUFFER), new ADuplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.BUFFER), new ADuplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.OBJECT), new ADuplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.OBJECT), new ADuplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.BUFFER), new ADuplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.BUFFER), new ADuplexBufferInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.OBJECT), new ADuplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.OBJECT), new ADuplexObjectInputPortLauncherSupport());
put(new APortDescription(PortKind.CLIENT_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.RPC), new ADuplexRPCInputPortLauncherSupport());
put(new APortDescription(PortKind.SERVER_INPUT_PORT, PortAccessKind.DUPLEX, PortMessageKind.RPC), new ADuplexRPCInputPortLauncherSupport());
}
Aggregations