All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.arangodb.shaded.vertx.core.http.ServerWebSocket Maven / Gradle / Ivy

There is a newer version: 7.8.0
Show newest version
/*
 * Copyright (c) 2011-2019 Contributors to the Eclipse Foundation
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.0
 * which is available at https://www.apache.org/licenses/LICENSE-2.0.
 *
 * SPDX-License-Identifier: EPL-2.0 OR Apache-2.0
 */

package com.arangodb.shaded.vertx.core.http;

import com.arangodb.shaded.vertx.codegen.annotations.GenIgnore;
import com.arangodb.shaded.vertx.codegen.annotations.Nullable;
import com.arangodb.shaded.vertx.codegen.annotations.VertxGen;
import com.arangodb.shaded.vertx.core.AsyncResult;
import com.arangodb.shaded.vertx.core.Future;
import com.arangodb.shaded.vertx.core.Handler;
import com.arangodb.shaded.vertx.core.Promise;
import com.arangodb.shaded.vertx.core.buffer.Buffer;

import javax.net.ssl.SSLPeerUnverifiedException;
import javax.net.ssl.SSLSession;
import javax.security.cert.X509Certificate;

/**
 * Represents a server side WebSocket.
 * 

* Instances of this class are passed into a {@link com.arangodb.shaded.vertx.core.http.HttpServer#webSocketHandler} or provided * when a WebSocket handshake is manually {@link HttpServerRequest#toWebSocket}ed. * * @author Tim Fox */ @VertxGen public interface ServerWebSocket extends WebSocketBase { @Override ServerWebSocket exceptionHandler(Handler handler); @Override ServerWebSocket handler(Handler handler); @Override ServerWebSocket pause(); @Override ServerWebSocket resume(); @Override ServerWebSocket fetch(long amount); @Override ServerWebSocket endHandler(Handler endHandler); @Override ServerWebSocket setWriteQueueMaxSize(int maxSize); @Override ServerWebSocket drainHandler(Handler handler); @Override ServerWebSocket writeFrame(WebSocketFrame frame, Handler> handler); @Override ServerWebSocket writeFinalTextFrame(String text, Handler> handler); @Override ServerWebSocket writeFinalBinaryFrame(Buffer data, Handler> handler); @Override ServerWebSocket writeBinaryMessage(Buffer data, Handler> handler); @Override ServerWebSocket writeTextMessage(String text, Handler> handler); @Override ServerWebSocket closeHandler(Handler handler); @Override ServerWebSocket frameHandler(Handler handler); /** * @return the WebSocket handshake scheme */ @Nullable String scheme(); /** * @return the WebSocket handshake host */ @Nullable String host(); /* * @return the WebSocket handshake URI. This is a relative URI. */ String uri(); /** * @return the WebSocket handshake path. */ String path(); /** * @return the WebSocket handshake query string. */ @Nullable String query(); /** * Accept the WebSocket and terminate the WebSocket handshake. *

* This method should be called from the WebSocket handler to explicitly accept the WebSocket and * terminate the WebSocket handshake. * * @throws IllegalStateException when the WebSocket handshake is already set */ void accept(); /** * Reject the WebSocket. *

* Calling this method from the WebSocket handler when it is first passed to you gives you the opportunity to reject * the WebSocket, which will cause the WebSocket handshake to fail by returning * a {@literal 502} response code. *

* You might use this method, if for example you only want to accept WebSockets with a particular path. * * @throws IllegalStateException when the WebSocket handshake is already set */ void reject(); /** * Like {@link #reject()} but with a {@code status}. */ void reject(int status); /** * Set an asynchronous result for the handshake, upon completion of the specified {@code future}, the * WebSocket will either be * *

    *
  • accepted when the {@code future} succeeds with the HTTP {@literal 101} status code
  • *
  • rejected when the {@code future} is succeeds with an HTTP status code different than {@literal 101}
  • *
  • rejected when the {@code future} fails with the HTTP status code {@code 500}
  • *
* * The provided future might be completed by the WebSocket itself, e.g calling the {@link #close()} method * will try to accept the handshake and close the WebSocket afterward. Thus it is advised to try to complete * the {@code future} with {@link Promise#tryComplete} or {@link Promise#tryFail}. *

* This method should be called from the WebSocket handler to explicitly set an asynchronous handshake. *

* Calling this method will override the {@code future} completion handler. * * @param future the future to complete with * @param handler the completion handler * @throws IllegalStateException when the WebSocket has already an asynchronous result */ void setHandshake(Future future, Handler> handler); /** * Like {@link #setHandshake(Future, Handler)} but returns a {@code Future} of the asynchronous result */ Future setHandshake(Future future); /** * {@inheritDoc} * *

* The WebSocket handshake will be accepted when it hasn't yet been settled or when an asynchronous handshake * is in progress. */ @Override Future close(); /** * @return SSLSession associated with the underlying socket. Returns null if connection is * not SSL. * @see javax.net.ssl.SSLSession */ @GenIgnore(GenIgnore.PERMITTED_TYPE) SSLSession sslSession(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy