handleFirstBuild method

void handleFirstBuild ()

Handles the first succeeded build.

By default, it startHttpServer and startWebSocketServer. This method may be overridden to add more functionalities.

Implementation

void handleFirstBuild() {
  startHttpServer();
  startWebSocketServer();
}