- java.lang.Object
-
- org.eclipse.jgit.transport.DaemonClient
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DaemongetDaemon()Get the daemon which spawned this client.InputStreamgetInputStream()Get input stream to read from the connected client.OutputStreamgetOutputStream()Get output stream to send data to the connected client.InetAddressgetRemoteAddress()Get Internet address of the remote client.
-
-
-
Method Detail
-
getDaemon
public Daemon getDaemon()
Get the daemon which spawned this client.- Returns:
- the daemon which spawned this client.
-
getRemoteAddress
public InetAddress getRemoteAddress()
Get Internet address of the remote client.- Returns:
- Internet address of the remote client.
-
getInputStream
public InputStream getInputStream()
Get input stream to read from the connected client.- Returns:
- input stream to read from the connected client.
-
getOutputStream
public OutputStream getOutputStream()
Get output stream to send data to the connected client.- Returns:
- output stream to send data to the connected client.
-
-