zmq.Utils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jeromq Show documentation
Show all versions of jeromq Show documentation
Pure Java implementation of libzmq
The newest version!
package zmq;
import java.io.File;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.SelectableChannel;
import java.nio.channels.SocketChannel;
import zmq.io.net.Address;
import zmq.io.net.tcp.TcpUtils;
@Deprecated
public class Utils
{
private Utils()
{
}
public static int randomInt()
{
return zmq.util.Utils.randomInt();
}
public static byte[] randomBytes(int length)
{
return zmq.util.Utils.randomBytes(length);
}
public static int findOpenPort() throws IOException
{
return zmq.util.Utils.findOpenPort();
}
public static void unblockSocket(SelectableChannel... channels) throws IOException
{
TcpUtils.unblockSocket(channels);
}
public static T[] realloc(Class klass, T[] src, int size, boolean ended)
{
return zmq.util.Utils.realloc(klass, src, size, ended);
}
public static byte[] bytes(ByteBuffer buf)
{
return zmq.util.Utils.bytes(buf);
}
public static byte[] realloc(byte[] src, int size)
{
return zmq.util.Utils.realloc(src, size);
}
public static boolean delete(File path)
{
return zmq.util.Utils.delete(path);
}
public static Address getPeerIpAddress(SocketChannel fd)
{
return zmq.util.Utils.getPeerIpAddress(fd);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy