Home / File/ WebSocketClientExtensionHandshaker.java — netty Source File

WebSocketClientExtensionHandshaker.java — netty Source File

Architecture documentation for WebSocketClientExtensionHandshaker.java, a java file in the netty codebase.

Entity Profile

Relationship Graph

Source Code

/*
 * Copyright 2014 The Netty Project
 *
 * The Netty Project licenses this file to you under the Apache License,
 * version 2.0 (the "License"); you may not use this file except in compliance
 * with the License. You may obtain a copy of the License at:
 *
 *   https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */
package io.netty.handler.codec.http.websocketx.extensions;


/**
 * Handshakes a client extension with the server.
 */
public interface WebSocketClientExtensionHandshaker {

    /**
     * Return extension configuration to submit to the server.
     *
     * @return the desired extension configuration.
     */
    WebSocketExtensionData newRequestData();

    /**
     * Handshake based on server response. It should always succeed because server response
     * should be a request acknowledge.
     *
     * @param extensionData
     *          the extension configuration sent by the server.
     * @return an initialized extension if handshake phase succeed or null if failed.
     */
    WebSocketClientExtension handshakeExtension(WebSocketExtensionData extensionData);

}

Frequently Asked Questions

What does WebSocketClientExtensionHandshaker.java do?
WebSocketClientExtensionHandshaker.java is a source file in the netty codebase, written in java.
Where is WebSocketClientExtensionHandshaker.java in the architecture?
WebSocketClientExtensionHandshaker.java is located at codec-http/src/main/java/io/netty/handler/codec/http/websocketx/extensions/WebSocketClientExtensionHandshaker.java (directory: codec-http/src/main/java/io/netty/handler/codec/http/websocketx/extensions).

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free