alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Tomcat example source code file (ChannelListener.java)

This example Tomcat source code file (ChannelListener.java) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Tomcat tags/keywords

channellistener, channellistener, io, member, member

The Tomcat ChannelListener.java source code

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You 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.apache.catalina.tribes;

import java.io.Serializable;
/**
 * 
 * <p>Title: ChannelListener

* * <p>Description: An interface to listens to incoming messages from a channel

* When a message is received, the Channel will invoke the channel listener in a conditional sequence. * <code>if ( listener.accept(msg,sender) ) listener.messageReceived(msg,sender);
* A ChannelListener implementation MUST NOT return true on <code>accept(Serializable, Member) * if it doesn't intend to process the message. The channel can this way track whether a message * was processed by an above application or if it was just received and forgot about, a featuer required * to support message-response(RPC) calls<br> * * @author Filip Hanik * @version 1.0 */ public interface ChannelListener { /** * Receive a message from the channel * @param msg Serializable * @param sender - the source of the message */ public void messageReceived(Serializable msg, Member sender); /** * Invoked by the channel to determine if the listener will process this message or not. * @param msg Serializable * @param sender Member * @return boolean */ public boolean accept(Serializable msg, Member sender); /** * * @param listener Object * @return boolean * @see Object#equals(Object) */ public boolean equals(Object listener); /** * * @return int * @see Object#hashCode(int) */ public int hashCode(); }

Other Tomcat examples (source code examples)

Here is a short list of links related to this Tomcat ChannelListener.java source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.