isServerRunning method

bool isServerRunning()

Is server running

Implementation

bool isServerRunning() {
  Pointer<Pointer<Void>> exception = WebFrameworkException.createException();

  IsServerRunningDart function = _handler.instance
      .lookupFunction<IsServerRunningC, IsServerRunningDart>(
          "isServerRunning");

  bool result = function.call(_implementation, exception);

  WebFrameworkException.checkException(exception, _handler);

  return result;
}