List of usage examples for java.net Socket subclass-usage
From source file ZipSocket.java
class ZipSocket extends Socket { private InputStream in; private OutputStream out; public ZipSocket() {
From source file ZipSocket.java
class ZipSocket extends Socket { private InputStream in; private OutputStream out; public ZipSocket() { super(); }
From source file com.mirth.connect.connectors.tcp.StateAwareSocket.java
public class StateAwareSocket extends Socket implements StateAwareSocketInterface { protected BufferedInputStream bis = null; public StateAwareSocket() { super();
From source file org.jgentleframework.utils.network.sockets.MonitoringSocket.java
/**
* The Class MonitoringSocket.
*
* @author Quoc Chung - mailto: <a
* href="mailto:skydunkpro@yahoo.com">skydunkpro@yahoo.com</a>
* @date Sep 8, 2008
From source file eu.matejkormuth.rpgdavid.starving.npc.util.NullSocket.java
public class NullSocket extends Socket { public static final byte[] EMPTY_BYTES = new byte[64]; @Override public InputStream getInputStream() throws IOException {
From source file com.maverick.ssl.SSLSocket.java
/** * * @author Lee David Painter <a href="mailto:lee@localhost"><lee@localhost></a> */ public class SSLSocket extends Socket {
From source file ch.cyberduck.core.socket.HttpProxyAwareSocket.java
public class HttpProxyAwareSocket extends Socket { private final Proxy proxy; public HttpProxyAwareSocket(final Proxy proxy) { super(proxy.type() == Proxy.Type.HTTP ? Proxy.NO_PROXY : proxy);
From source file org.apache.jmeter.util.SlowSocket.java
/** * "Slow" (non-SSL) socket implementation to emulate dial-up modems etc */ public class SlowSocket extends Socket { private final int CPS; // Characters per second to emulate
From source file com.amazonaws.internal.SdkSocket.java
public class SdkSocket extends Socket { private static final Log log = LogFactory.getLog(SdkSocket.class); private final Socket sock; public SdkSocket(Socket sock) {
From source file com.maverick.http.SocketWithLayeredTransport.java
/** * * @author Lee David Painter <a href="mailto:lee@localhost"><lee@localhost></a> */ public class SocketWithLayeredTransport extends Socket {