blob: 0ad9da5ed1e7915bd0a5b2b1935e69d5f9c28165 [file] [log] [blame]
/*
* 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.cocoon.components.thread;
import EDU.oswego.cs.dl.util.concurrent.Channel;
/**
* Wrapper around a Channel implementation for constructor convenience
*
* @author <a href="mailto:giacomo.at.apache.org">Giacomo Pati</a>
* @version $Id: ChannelWrapper.java 56702 2004-11-05 22:52:05Z giacomo $
*/
public class ChannelWrapper
implements Channel
{
//~ Instance fields --------------------------------------------------------
/** The wrapped Channel */
private Channel m_channel;
//~ Methods ----------------------------------------------------------------
/**
* DOCUMENT ME!
*
* @param channel DOCUMENT ME!
*/
public void setChannel( final Channel channel )
{
m_channel = channel;
}
/**
* @see EDU.oswego.cs.dl.util.concurrent.Puttable#offer(java.lang.Object,
* long)
*/
public boolean offer( final Object obj,
final long timeout )
throws InterruptedException
{
return m_channel.offer( obj, timeout );
}
/**
* @see EDU.oswego.cs.dl.util.concurrent.Channel#peek()
*/
public Object peek( )
{
return m_channel.peek( );
}
/**
* @see EDU.oswego.cs.dl.util.concurrent.Takable#poll(long)
*/
public Object poll( final long timeout )
throws InterruptedException
{
return m_channel.poll( timeout );
}
/**
* @see EDU.oswego.cs.dl.util.concurrent.Puttable#put(java.lang.Object)
*/
public void put( final Object obj )
throws InterruptedException
{
m_channel.put( obj );
}
/**
* @see EDU.oswego.cs.dl.util.concurrent.Takable#take()
*/
public Object take( )
throws InterruptedException
{
return m_channel.take( );
}
}