A TransportConfiguration is used by a client to specify connections to a server and its backup if one exists.
Typically the constructors take the class name and parameters for needed to create the connection. These will be different dependent on which connector is being used, i.e. Netty or InVM etc. For example:
HashMap<String, Object> map = new HashMap<String, Object>(); map.put("host", "localhost"); map.put("port", 5445); TransportConfiguration config = new TransportConfiguration(InVMConnectorFactory.class.getName(), map); ClientSessionFactory sf = new ClientSessionFactoryImpl(config);
@author
Tim Fox