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

com.enonic.xp.web.websocket.WebSocketService Maven / Gradle / Ivy

The newest version!
package com.enonic.xp.web.websocket;

import java.io.IOException;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public interface WebSocketService
{
    boolean isUpgradeRequest( HttpServletRequest req, HttpServletResponse res );

    boolean acceptWebSocket( HttpServletRequest req, HttpServletResponse res, EndpointFactory factory )
        throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy