Sha256: ab6e6cf6f347b2376aa6273d6727211b16b7bfe404d90f30eeb82c3bc64f6533

Contents?: true

Size: 1.45 KB

Versions: 16

Compression:

Stored size: 1.45 KB

Contents

/**
 * $Id$
 * 
 * Author:: Francis Cianfrocca (gmail: blackhedd)
 * Homepage::  http://rubyeventmachine.com
 * Date:: 15 Jul 2007
 * 
 * See EventMachine and EventMachine::Connection for documentation and
 * usage examples.
 * 
 *
 *----------------------------------------------------------------------------
 *
 * Copyright (C) 2006-07 by Francis Cianfrocca. All Rights Reserved.
 * Gmail: blackhedd
 * 
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of either: 1) the GNU General Public License
 * as published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version; or 2) Ruby's License.
 * 
 * See the file COPYING for complete licensing information.
 *
 *---------------------------------------------------------------------------
 *
 * 
 */


package com.rubyeventmachine;

import java.nio.ByteBuffer;

public interface EventableChannel {
	
	public void scheduleOutboundData (ByteBuffer bb);
	
	public void scheduleOutboundDatagram (ByteBuffer bb, String recipAddress, int recipPort);
	
	public void scheduleClose (boolean afterWriting);
	
	public void startTls();
	
	public String getBinding();
	
	public void readInboundData (ByteBuffer dst);
	
	/**
	 * This is called by the reactor after it finishes running.
	 * The idea is to free network resources.
	 */
	public void close();
	
	public boolean writeOutboundData();

	public void setCommInactivityTimeout (long seconds);
}

Version data entries

16 entries across 16 versions & 5 rubygems

Version Path
careo-eventmachine-0.12.5.1 java/src/com/rubyeventmachine/EventableChannel.java
davidsmalley-eventmachine-0.12.3.1 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.3 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.4 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.5 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.6 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.7 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.8 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-eventmachine-0.12.9 java/src/com/rubyeventmachine/EventableChannel.java
libc-eventmachine-0.12.5.42 java/src/com/rubyeventmachine/EventableChannel.java
libc-eventmachine-0.12.7.42 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-0.12.4 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-0.12.8-java java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-0.12.6-java java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-0.12.6 java/src/com/rubyeventmachine/EventableChannel.java
eventmachine-0.12.8 java/src/com/rubyeventmachine/EventableChannel.java