Sample code for 30+ languages & platforms
Dart

Wait for a Socket to Become Readable

See more Socket/SSL/TLS Examples

Demonstrates Socket.SelectForReading, which waits for read-ready activity on the socket, or on any contained socket when the object is a socket set. It returns 1 if ready, 0 on timeout, or -1 on error.

Background. A timeoutMs of 0 performs a nonblocking poll. With a socket set, this monitors many connections at once for readability.

Chilkat Dart Downloads

Dart
import 'package:chilkat/chilkat.dart';

void main() {
  final socket = CkSocket();

  // Connect to the server using TLS.
  final bTls = true;
  final maxWaitMs = 5000;
  try {
    socket.connect('example.com', 5000, bTls, maxWaitMs);
  } on ChilkatException catch (e) {
    print(e.lastErrorText);
    return;
  }

  // Wait up to 5 seconds for read-ready activity on the socket (or, for a socket set, on any contained
  // socket).  Returns 1 if ready, 0 on timeout, or -1 on error.
  final ready = socket.selectForReading(5000);
  if (ready < 0) {
    print(socket.lastErrorText);
    return;
  }

  if (ready != 1) {
    print('No data became available before the timeout.');
    return;
  }

  print('The socket has data ready to read.');
}