Skip to content

gemstone/communication

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gemstone logo





Communication

GPA Gemstone Library

The Gemstone Communication Library organizes all Gemstone functionality related to communication, e.g., sockets and serial ports. Communication classes are defined with interfaces, IServer and IClient, so communications can be abstracted.

GitHub license Build status CodeQL NuGet

This library includes helpful communication classes like the following:

  • TcpClient:
    • Represents a TCP-based communication client.
  • TlsClient:
    • Represents a TCP-based communication client with TLS authentication and encryption.
  • UdpClient:
    • Represents a UDP-based communication client.
  • SerialClient:
    • Represents a communication client based on SerialPort.
  • FileClient:
    • Represents a communication client based on FileStream.
  • TcpServer:
    • Represents a TCP-based communication server.
  • TlsServer:
    • Represents a TCP-based communication server with TLS authentication and encryption.
  • UdpServer:
    • Represents a UDP-based communication server.

Among others.

Documentation

Full Library Documentation