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

pl.bristleback.server.bristle.messages.WebSocketMessage Maven / Gradle / Ivy

// Bristleback plugin - Copyright (c) 2010 bristleback.googlecode.com
// ---------------------------------------------------------------------------
// This program is free software; you can redistribute it and/or modify it
// under the terms of the GNU Lesser General Public License as published by the
// Free Software Foundation; either version 3 of the License, or (at your
// option) any later version.
// This library is distributed in the hope that it will be useful,
// but without any warranty; without even the implied warranty of merchantability
// or fitness for a particular purpose.
// You should have received a copy of the GNU Lesser General Public License along
// with this program; if not, see .
// ---------------------------------------------------------------------------
package pl.bristleback.server.bristle.messages;

import org.apache.log4j.Logger;
import org.jwebsocket.api.WebSocketConnector;
import org.jwebsocket.token.Token;

import java.util.Collections;
import java.util.List;

/**
 * Websocket message wrapper, containing token and one or more target connectors.
 * 

* Created on: 2010-09-21 20:59:28
* * @author Wojciech Niemiec */ public class WebSocketMessage { private static Logger log = Logger.getLogger(WebSocketMessage.class.getName()); private Token token; private List broadcastConnectors; public WebSocketMessage(Token token, WebSocketConnector connector) { this.token = token; broadcastConnectors = Collections.singletonList(connector); } public WebSocketMessage(Token token, List broadcastConnectors) { this.token = token; this.broadcastConnectors = broadcastConnectors; } public boolean isBroadcastMessage() { return (broadcastConnectors != null) && (broadcastConnectors.size() > 1); } public Token getToken() { return token; } public List getBroadcastConnectors() { return broadcastConnectors; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy