entry static method

void entry(
  1. Tuple3<SendPort, int, int> args
)

Implementation

static void entry(Tuple3<SendPort, int, int> args) async {
  final isolate = EpollIsolate.fromIsolateArgs(args);

  try {
    await isolate.run();
  } finally {
    isolate.dispose();
  }
}