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

com.fireflysource.net.websocket.server.SubProtocolSelector Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.websocket.server;

import java.util.List;

/**
 * @author Pengtao Qiu
 */
public interface SubProtocolSelector {

    /**
     * Select the supported sub protocols.
     *
     * @param protocols The client supported sub protocols.
     * @return The server selected sub protocols.
     */
    List select(List protocols);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy