de.gesellix.docker.client.filesocket.NamedPipeSocketFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-filesocket Show documentation
Show all versions of docker-filesocket Show documentation
Unix Domain Sockets and Named Pipes for the JVM on Linux, macOS, and Windows
The newest version!
package de.gesellix.docker.client.filesocket;
import java.net.Socket;
public class NamedPipeSocketFactory extends FileSocketFactory {
@Override
public Socket createSocket() {
return new NamedPipeSocket();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy