namespace NetMQ.Sockets
{
///
/// Client socket, thread-safe alternative for Dealer socket
///
public class ClientSocket : ThreadSafeSocket, IThreadSafeOutSocket, IThreadSafeInSocket
{
///
/// Create a new Client Socket.
///
public ClientSocket() : base(ZmqSocketType.Client)
{
}
}
}