List of usage examples for javax.websocket Endpoint subclass-usage
From source file org.wso2.carbon.event.output.adaptor.websocket.internal.WebsocketClient.java
/** * This is the client that is used to publish events to a user-configured websocket-server end point. */ public class WebsocketClient extends Endpoint { private static final Log log = LogFactory.getLog(WebsocketClient.class);
From source file org.wso2.carbon.event.output.adapter.websocket.internal.WebsocketClient.java
/** * This is the client that is used to publish events to a user-configured websocket-server end point. */ public class WebsocketClient extends Endpoint { private static final Log log = LogFactory.getLog(WebsocketClient.class);
From source file org.springframework.samples.websocket.client.SimpleClientEndpoint.java
public class SimpleClientEndpoint extends Endpoint { private Log logger = LogFactory.getLog(SimpleClientEndpoint.class); private final GreetingService greetingService;
From source file org.wso2.carbon.event.input.adaptor.websocket.internal.WebsocketClient.java
/** * An instance of this class is used, when we connect to a user-given socket-server, as a client - to send events. */ public class WebsocketClient extends Endpoint { private static final Log log = LogFactory.getLog(WebsocketClient.class);
From source file org.wso2.carbon.event.input.adapter.websocket.internal.WebsocketClient.java
/** * An instance of this class is used, when we connect to a user-given socket-server, as a client - to send events. */ public class WebsocketClient extends Endpoint { private static final Log log = LogFactory.getLog(WebsocketClient.class);
From source file pt.webdetails.cda.push.CdaPushQueryEndpoint.java
/** * Websocket implementation for CDA queries. * This Endpoint is registered in plugin.spring.xml fille by means of the {@link org.pentaho.platform.web.websocket.WebsocketEndpointConfig} bean. */ public class CdaPushQueryEndpoint extends Endpoint {
From source file edu.rit.chrisbitler.ritcraft.slackintegration.rtm.RTMClient.java
/** * Class to streamline the usage for the websocket interface that slack * provides us for recieving chat messages from slack */ public class RTMClient extends Endpoint {
From source file org.springframework.web.socket.adapter.StandardEndpointAdapter.java
/**
* Adapts a {@link WebSocketHandler} to a standard {@link Endpoint}.
*
* @author Rossen Stoyanchev
* @since 4.0
*/
From source file com.rotty3000.websocket.demo.WebsocketEndpoint.java
@Component(property = { "org.osgi.http.websocket.endpoint.path=/logger" }, scope = ServiceScope.PROTOTYPE, service = Endpoint.class) public class WebsocketEndpoint extends Endpoint { @Override public void onOpen(Session session, EndpointConfig config) {
From source file org.cloudfoundry.metron.MetronMetricWriter.java
@ExportMetricWriter final class MetronMetricWriter extends Endpoint implements MetricWriter { private final AtomicReference<Optional<Session>> session = new AtomicReference<>(Optional.empty()); MetronMetricWriter() {