
org.simpleframework.transport.Writer Maven / Gradle / Ivy
/*
* Writer.java February 2008
*
* Copyright (C) 2008, Niall Gallagher
*
* This library 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.
*
* 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. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General
* Public License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA
*/
package org.simpleframework.transport;
import java.nio.channels.SocketChannel;
/**
* The Writer
object represents a means to coalesce
* packets at a single point before being written to the socket. It
* is used to ensure all packets are queued in order of sequence
* number. Any packets that are partially written to the underlying
* socket can be coalesced in to a single packet so that a larger
* packet can be delivered over the network.
*
* @author Niall Gallagher
*
* @see org.simpleframework.transport.Flusher
*/
interface Writer {
/**
* This provides the socket for the writer. Providing this
* enables a Reactor
to be used to determine when
* the writer is write ready and thus when the writer can
* be flushed if it contains packets that have not been written.
*
* @return this returns the socket associated with this
*/
public SocketChannel getChannel();
/**
* This is used to write the packets to the writer which will
* be either written to the underlying socket or queued until
* such time as the socket is write ready. This will return true
* if the packet has been written to the underlying transport.
*
* @param packet this is the packet that is the be written
*
* @return true if the packet has been written to the transport
*/
public boolean write(Packet packet) throws Exception;
/**
* This is used to flush all queued packets to the underlying
* socket. If all of the queued packets have been fully written
* then this returns true, otherwise this will return false.
*
* @return true if all queued packets are flushed to the socket
*/
public boolean flush() throws Exception;
/**
* This is used to close the writer and the underlying socket.
* If a close is performed on the writer then no more bytes
* can be read from or written to the writer and the client
* will receive a connection close on their side.
*/
public void close() throws Exception;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy