Replace JSSC with JSerialComm

This commit is contained in:
Alexander Nozik 2023-08-16 10:42:44 +03:00
parent 69617e73b4
commit 583fe5b54c
2 changed files with 6 additions and 6 deletions

View File

@ -73,7 +73,7 @@ public class ChannelPort(
} }
/** /**
* A [PortFactory] for TCP services * A [PortFactory] for TCP connections
*/ */
public object TcpPort : PortFactory { public object TcpPort : PortFactory {
@ -97,7 +97,7 @@ public object TcpPort : PortFactory {
/** /**
* A [PortFactory] for UDP services * A [PortFactory] for UDP connections
*/ */
public object UdpPort : PortFactory { public object UdpPort : PortFactory {

View File

@ -28,22 +28,22 @@ public interface MagixEndpoint {
public companion object { public companion object {
/** /**
* A default port for HTTP/WS services * A default port for HTTP/WS connections
*/ */
public const val DEFAULT_MAGIX_HTTP_PORT: Int = 7777 public const val DEFAULT_MAGIX_HTTP_PORT: Int = 7777
/** /**
* A default port for raw TCP services * A default port for raw TCP connections
*/ */
public const val DEFAULT_MAGIX_RAW_PORT: Int = 7778 public const val DEFAULT_MAGIX_RAW_PORT: Int = 7778
/** /**
* A default PUB port for ZMQ services * A default PUB port for ZMQ connections
*/ */
public const val DEFAULT_MAGIX_ZMQ_PUB_PORT: Int = 7781 public const val DEFAULT_MAGIX_ZMQ_PUB_PORT: Int = 7781
/** /**
* A default PULL port for ZMQ services * A default PULL port for ZMQ connections
*/ */
public const val DEFAULT_MAGIX_ZMQ_PULL_PORT: Int = 7782 public const val DEFAULT_MAGIX_ZMQ_PULL_PORT: Int = 7782