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

org.cometd.bayeux.server.ServerChannel Maven / Gradle / Ivy

There is a newer version: 4.0.9
Show newest version
/*
 * Copyright (c) 2010 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.server;

import java.util.Set;

import org.cometd.bayeux.Session;
import org.cometd.bayeux.client.ClientSessionChannel;

/**
 * 

Server side representation of a Bayeux channel.

*

{@link ServerChannel} is the entity that holds a set of * {@link ServerSession}s that are subscribed to the channel itself.

*

A message published to a {@link ServerChannel} will be delivered to * all the {@link ServerSession}'s subscribed to the channel.

*

Contrary to their client side counterpart ({@link ClientSessionChannel}) * a {@link ServerChannel} is not scoped with a session.

*/ public interface ServerChannel extends ConfigurableServerChannel { /** * @return a snapshot of the set of subscribers of this channel */ public Set getSubscribers(); /** *

Subscribes the given session to this channel.

*

Subscriptions are effective for {@link #isBroadcast() broadcast channels} * and are successful no-operations for {@link #isService() service channels}.

*

The subscription may fail if the session is already subscribed * to the channel or if the session is expired or if the channel * is a meta channel.

* * @param session the session to subscribe * @return whether the subscription succeeded * @see #unsubscribe(ServerSession) */ public boolean subscribe(ServerSession session); /** *

Unsubscribes the given session from this channel.

*

Unsubscriptions are effective for {@link #isBroadcast() broadcast channels} * and are successful no-operations for {@link #isService() service channels}.

*

The unsubscription may fail if the session is already unsubscribed * from the channel or if the session is expired or if the channel * is a meta channel.

* * @param session the session to unsubscribe * @return whether the unsubscription succeeded */ public boolean unsubscribe(ServerSession session); /** *

Publishes the given message to this channel, delivering * the message to all the {@link ServerSession}s subscribed to * this channel.

* * @param from the session from which the message originates * @param message the message to publish * @see #publish(Session, Object, String) */ public void publish(Session from, ServerMessage.Mutable message); /** *

Publishes the given information to this channel.

* * @param from the session from which the message originates * @param data the data of the message * @param id the id of the message * @see #publish(Session, ServerMessage.Mutable) */ public void publish(Session from, Object data, String id); /** *

Removes this channel, and all the children channels.

*

If channel "/foo", "/foo/bar" and "/foo/blip" exist, * removing channel "/foo" will remove also "/foo/bar" and * "/foo/blip".

*

The removal will notify {@link BayeuxServer.ChannelListener} * listeners.

*/ public void remove(); /** *

Listeners objects that implement this interface will be notified of message publish.

*/ public interface MessageListener extends ServerChannelListener { /** *

Callback invoked when a message is being published.

*

Implementors can decide to return false to signal that the message should not be * published.

* * @param from the session that publishes the message * @param channel the channel the message is published to * @param message the message to be published * @return whether the message should be published or not */ public boolean onMessage(ServerSession from, ServerChannel channel, ServerMessage.Mutable message); } /** *

Listeners object that implement this interface will be notified of subscription events.

*/ public interface SubscriptionListener extends ServerChannelListener { /** *

Callback invoked when the given {@link ServerSession} subscribes to the given {@link ServerChannel}.

* * @param session the session that subscribes * @param channel the channel the session subscribes to */ public void subscribed(ServerSession session, ServerChannel channel); /** *

Callback invoked when the given {@link ServerSession} unsubscribes from the given {@link ServerChannel}.

* * @param session the session that unsubscribes * @param channel the channel the session unsubscribes from */ public void unsubscribed(ServerSession session, ServerChannel channel); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy