|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectnet.i2p.client.streaming.I2PSocketManagerFactory
public class I2PSocketManagerFactory
Simplify the creation of I2PSession and transient I2P Destination objects if necessary to create a socket manager. This class is most likely how classes will begin their use of the socket library. For new applications, createDisconnectedManager() is the preferred method. It is non-blocking and throws on all errors. All createManager() methods are blocking and return null on error. Note that for all methods, host and port arguments are ignored if in RouterContext; it will connect internally to the router in the JVM. You cannot connect out from a router JVM to another router.
Field Summary | |
---|---|
static String |
DEFAULT_MANAGER
The one and only manager. |
static String |
PROP_MANAGER
Deprecated. |
Constructor Summary | |
---|---|
I2PSocketManagerFactory()
|
Method Summary | |
---|---|
static I2PSocketManager |
createDisconnectedManager(InputStream myPrivateKeyStream,
String i2cpHost,
int i2cpPort,
Properties opts)
Create a disconnected socket manager using the destination loaded from the given private key stream, or null for a transient destination. |
static I2PSocketManager |
createManager()
Create a socket manager using a brand new destination connected to the I2CP router on the local machine on the default port (7654). |
static I2PSocketManager |
createManager(InputStream myPrivateKeyStream)
Create a socket manager using the destination loaded from the given private key stream and connected to the default I2CP host and port. |
static I2PSocketManager |
createManager(InputStream myPrivateKeyStream,
Properties opts)
Create a socket manager using the destination loaded from the given private key stream and connected to the default I2CP host and port. |
static I2PSocketManager |
createManager(InputStream myPrivateKeyStream,
String i2cpHost,
int i2cpPort,
Properties opts)
Create a socket manager using the destination loaded from the given private key stream and connected to the I2CP router on the specified machine on the given port. |
static I2PSocketManager |
createManager(Properties opts)
Create a socket manager using a brand new destination connected to the I2CP router on the local machine on the default port (7654). |
static I2PSocketManager |
createManager(String host,
int port)
Create a socket manager using a brand new destination connected to the I2CP router on the specified host and port. |
static I2PSocketManager |
createManager(String i2cpHost,
int i2cpPort,
Properties opts)
Create a socket manager using a brand new destination connected to the I2CP router on the given machine reachable through the given port. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String PROP_MANAGER
public static final String DEFAULT_MANAGER
Constructor Detail |
---|
public I2PSocketManagerFactory()
Method Detail |
---|
public static I2PSocketManager createManager()
public static I2PSocketManager createManager(Properties opts)
opts
- Streaming and I2CP options, may be null
public static I2PSocketManager createManager(String host, int port)
host
- I2CP host null to use default, ignored if in router contextport
- I2CP port <= 0 to use default, ignored if in router context
public static I2PSocketManager createManager(String i2cpHost, int i2cpPort, Properties opts)
i2cpHost
- I2CP host null to use default, ignored if in router contexti2cpPort
- I2CP port <= 0 to use default, ignored if in router contextopts
- Streaming and I2CP options, may be null
public static I2PSocketManager createManager(InputStream myPrivateKeyStream)
myPrivateKeyStream
- private key stream, format is specified in PrivateKeyFile
or null for a transient destination. Caller must close.
public static I2PSocketManager createManager(InputStream myPrivateKeyStream, Properties opts)
myPrivateKeyStream
- private key stream, format is specified in PrivateKeyFile
or null for a transient destination. Caller must close.opts
- Streaming and I2CP options, may be null
public static I2PSocketManager createManager(InputStream myPrivateKeyStream, String i2cpHost, int i2cpPort, Properties opts)
myPrivateKeyStream
- private key stream, format is specified in PrivateKeyFile
or null for a transient destination. Caller must close.i2cpHost
- I2CP host null to use default, ignored if in router contexti2cpPort
- I2CP port <= 0 to use default, ignored if in router contextopts
- Streaming and I2CP options, may be null
public static I2PSocketManager createDisconnectedManager(InputStream myPrivateKeyStream, String i2cpHost, int i2cpPort, Properties opts) throws I2PSessionException
myPrivateKeyStream
- private key stream, format is specified in PrivateKeyFile
or null for a transient destination. Caller must close.i2cpHost
- I2CP host null to use default, ignored if in router contexti2cpPort
- I2CP port <= 0 to use default, ignored if in router contextopts
- Streaming and I2CP options, may be null
I2PSessionException
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |