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

org.atmosphere.websocket.protocol.EchoProtocol Maven / Gradle / Ivy

/*
* Copyright 2017 Async-IO.org
*
* Licensed 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
*
* http://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 org.atmosphere.websocket.protocol;

import org.atmosphere.cpr.AtmosphereConfig;
import org.atmosphere.cpr.AtmosphereRequest;
import org.atmosphere.cpr.AtmosphereResponse;
import org.atmosphere.websocket.WebSocket;
import org.atmosphere.websocket.WebSocketProcessor;
import org.atmosphere.websocket.WebSocketProtocol;
import com.vaadin.external.org.slf4j.Logger;
import com.vaadin.external.org.slf4j.LoggerFactory;

import java.util.List;

/**
 * Simple {@link org.atmosphere.websocket.WebSocketProcessor} that invoke the {@link org.atmosphere.cpr.Broadcaster#broadcast} API when a WebSocket message
 * is received.
 * 

* NOTE: If WebSocket frame are used the bytes will be decoded into a String, which reduce performance. * * @author Jeanfrancois Arcand */ public class EchoProtocol implements WebSocketProtocol { private static final Logger logger = LoggerFactory.getLogger(EchoProtocol.class); @Override public List onMessage(WebSocket webSocket, String data) { logger.trace("broadcast String"); webSocket.resource().getBroadcaster().broadcast(data); return null; } @Override public List onMessage(WebSocket webSocket, byte[] data, int offset, int length) { logger.trace("broadcast byte"); byte[] b = new byte[length]; System.arraycopy(data, offset, b, 0, length); webSocket.resource().getBroadcaster().broadcast(b); return null; } @Override public void configure(AtmosphereConfig config) { } @Override public void onOpen(WebSocket webSocket) { } @Override public void onClose(WebSocket webSocket) { } @Override public void onError(WebSocket webSocket, WebSocketProcessor.WebSocketException t) { logger.error(t.getMessage() + " Status {} Message {}", t.response().getStatus(), t.response().getStatusMessage()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy