org.cometd.bayeux.Channel Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2014 the original author or authors.
*
* 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.cometd.bayeux;
import java.util.Set;
/**
* A Bayeux channel is the primary message routing mechanism within Bayeux:
* both Bayeux clients and Bayeux server use channels to group listeners that
* are interested in receiving messages with that channel.
*
* This interface is the common root for both the
* {@link org.cometd.bayeux.client.ClientSessionChannel client side} representation
* of a channel and the {@link org.cometd.bayeux.server.ServerChannel server side}
* representation of a channel.
*
* Channels are identified with strings that look like paths (e.g. "/foo/bar")
* called "channel id".
* Meta channels have channel ids starting with "/meta/" and are reserved for the
* operation of they Bayeux protocol.
* Service channels have channel ids starting with "/service/" and are channels
* for which publish is disabled, so that only server side listeners will receive
* the messages.
*
* A channel id may also be specified with wildcards.
* For example "/meta/*" refers to all top level meta channels
* like "/meta/subscribe" or "/meta/handshake".
* The channel "/foo/**" is deeply wild and refers to all channels like "/foo/bar",
* "/foo/bar/bob" and "/foo/bar/wibble/bip".
* Wildcards can only be specified as last segment of a channel; therefore channel
* "/foo/*/bar/** is an invalid channel.
*/
public interface Channel
{
/** Constant representing the meta prefix */
public static final String META = "/meta";
/** Constant representing the handshake meta channel. */
public final static String META_HANDSHAKE = META + "/handshake";
/** Constant representing the connect meta channel */
public final static String META_CONNECT = META + "/connect";
/** Constant representing the subscribe meta channel */
public final static String META_SUBSCRIBE = META + "/subscribe";
/** Constant representing the unsubscribe meta channel */
public final static String META_UNSUBSCRIBE = META + "/unsubscribe";
/** Constant representing the disconnect meta channel */
public final static String META_DISCONNECT = META + "/disconnect";
/**
* @return The channel id as a String
*/
String getId();
/**
* @return The channel ID as a {@link ChannelId}
*/
public ChannelId getChannelId();
/**
* Tells whether the channel is a meta channel, that is if its
* {@link #getId() id} starts with {@code "/meta/"}.
*
* @return true if the channel is a meta channel
*/
boolean isMeta();
/**
* Tells whether the channel is a service channel, that is if its
* {@link #getId() id} starts with {@code "/service/"}.
*
* @return true if the channel is a service channel
*/
boolean isService();
/**
* A broadcasting channel is a channel that is neither a
* {@link #isMeta() meta channel} nor a {@link #isService() service channel}.
*
* @return whether the channel is a broadcasting channel
*/
boolean isBroadcast();
/**
* Tells whether a channel contains the wild character '*', for example
* {@code /foo/*} or if it is {@link #isDeepWild()}.
*
* @return true if the channel contains the '*' or '**' characters
*/
boolean isWild();
/**
* Tells whether a channel contains the deep wild characters '**', for example
* {@code /foo/**}
*
* @return true if the channel contains the '**' characters
*/
boolean isDeepWild();
/**
* Sets a named channel attribute value.
* Channel attributes are convenience data that allows arbitrary
* application data to be associated with a channel.
*
* @param name the attribute name
* @param value the attribute value
*/
void setAttribute(String name, Object value);
/**
* Retrieves the value of named channel attribute.
* @param name the name of the attribute
* @return the attribute value or null if the attribute is not present
*/
Object getAttribute(String name);
/**
* @return the list of channel attribute names.
*/
Set getAttributeNames();
/**
* Removes a named channel attribute.
* @param name the name of the attribute
* @return the value of the attribute
*/
Object removeAttribute(String name);
}