public VertxHttpRequest(Context context, ResteasyHttpHeaders httpHeaders, ResteasyUriInfo uri, String httpMethod, SynchronousDispatcher dispatcher, VertxHttpResponse response, boolean is100ContinueExpected) { super(uri); this.context = context; this.is100ContinueExpected = is100ContinueExpected; this.response = response; this.dispatcher = dispatcher; this.httpHeaders = httpHeaders; this.httpMethod = httpMethod; this.executionContext = new VertxExecutionContext(this, response, dispatcher); }
@Override public ResteasyAsynchronousResponse suspend() throws IllegalStateException { return suspend(-1); }
@Override public ResteasyAsynchronousResponse suspend(long millis) throws IllegalStateException { return suspend(millis, TimeUnit.MILLISECONDS); }
@Override public ResteasyAsynchronousResponse suspend() throws IllegalStateException { return suspend(-1); }
public VertxHttpRequest(final Context context, final ResteasyHttpHeaders httpHeaders, final ResteasyUriInfo uri, final String httpMethod, final SynchronousDispatcher dispatcher, final VertxHttpResponse response, final boolean is100ContinueExpected) { super(uri); this.context = context; this.is100ContinueExpected = is100ContinueExpected; this.response = response; this.dispatcher = dispatcher; this.httpHeaders = httpHeaders; this.httpMethod = httpMethod; this.executionContext = new VertxExecutionContext(this, response, dispatcher); }
@Override public ResteasyAsynchronousResponse suspend(long millis) throws IllegalStateException { return suspend(millis, TimeUnit.MILLISECONDS); }