initialize method

void initialize(
  1. Server server,
  2. String name
)

Initializes the FutureCall. This is typically called from the Server when the call is being registered and should not be called directly.

Implementation

void initialize(Server server, String name) {
  _server = server;
  _name = name;
}