ShiSockListener constructor

ShiSockListener(
  1. String address,
  2. int port
)

Constructor of the class, it equally calling the function which in turn call another function that will create and maintain the connection with the server.

Implementation

ShiSockListener(String address, int port) {
  _connect(address, port);
}