use of sessionport.datacomm.duplex.object.relayed.ARelayingObjectDuplexSessionPortFactory in project GIPC by pdewan.
the class LatecomerClientAndServerUtil method setClientLatecomerFactories.
public static void setClientLatecomerFactories() {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ARelayingObjectDuplexSessionPortFactory());
// this is not really needed now is it?
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new ALatecomerObjectGroupSessionRelayedPortFactory());
RelayingGroupConnectionManagerSelector.setRelayingGroupConnectionManagerFactory(new ALatecomerRelayingGroupConnectionManagerFactory());
}
use of sessionport.datacomm.duplex.object.relayed.ARelayingObjectDuplexSessionPortFactory in project GIPC by pdewan.
the class RelayerClientAndServerSupport method setRelayedCommunicaton.
public static void setRelayedCommunicaton(boolean yes) {
if (yes) {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ARelayingObjectDuplexSessionPortFactory());
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new AnObjectGroupSessionPortRelayedFactory());
} else {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ADirectObjectDuplexSessionPortFactory());
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new ALayeredObjectGroupSessionPortFactory());
}
}
use of sessionport.datacomm.duplex.object.relayed.ARelayingObjectDuplexSessionPortFactory in project GIPC by pdewan.
the class ADuplexRPCSessionPortRelayedLauncherSupport method setFactories.
public void setFactories() {
super.setFactories();
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ARelayingObjectDuplexSessionPortFactory());
}
use of sessionport.datacomm.duplex.object.relayed.ARelayingObjectDuplexSessionPortFactory in project GIPC by pdewan.
the class RelayerClientAndServerSupport method setEfficientRelayedCommunicaton.
public static void setEfficientRelayedCommunicaton(boolean yes) {
if (yes) {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ARelayingObjectDuplexSessionPortFactory());
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new AnEfficientObjectGroupSessionRelayedPortFactory());
} else {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ADirectObjectDuplexSessionPortFactory());
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new ALayeredObjectGroupSessionPortFactory());
}
}
use of sessionport.datacomm.duplex.object.relayed.ARelayingObjectDuplexSessionPortFactory in project GIPC by pdewan.
the class RelayerClientAndServerSupport method setClientEfficientRelayerFactories.
public static void setClientEfficientRelayerFactories() {
ObjectDuplexSessionPortSelector.setDuplexSessionPortFactory(new ARelayingObjectDuplexSessionPortFactory());
ObjectGroupSessionPortSelector.setGroupSessionPortFactory(new AnEfficientObjectGroupSessionRelayedPortFactory());
}
Aggregations