Copyright (C) 2009-2013 Barchart, Inc.
All rights reserved. Licensed under the OSI BSD License.
http://www.opensource.org/licenses/bsd-license.php
/**
* Copyright (C) 2009-2013 Barchart, Inc. <http://www.barchart.com/>
*
* All rights reserved. Licensed under the OSI BSD License.
*
* http://www.opensource.org/licenses/bsd-license.php
*/
package com.barchart.udt.nio;
import java.nio.channels.Channel;
import java.nio.channels.SelectionKey;
import com.barchart.udt.SocketUDT;
import com.barchart.udt.TypeUDT;
Interface shared by all KindUDT
kinds. /**
* Interface shared by all {@link KindUDT} kinds.
*/
public interface ChannelUDT extends Channel {
Was connection request SocketChannelUDT.connect(SocketAddress)
acknowledged by SocketChannelUDT.finishConnect()
? /**
* Was connection request
* {@link SocketChannelUDT#connect(java.net.SocketAddress)} acknowledged by
* {@link SocketChannelUDT#finishConnect()}?
*/
boolean isConnectFinished();
The kind of UDT channel.
/**
* The kind of UDT channel.
*/
KindUDT kindUDT();
UDT specific provider which produced this channel.
/**
* UDT specific provider which produced this channel.
*/
SelectorProviderUDT providerUDT();
Underlying UDT socket.
/**
* Underlying UDT socket.
*/
SocketUDT socketUDT();
The type of UDT socket.
/**
* The type of UDT socket.
*/
TypeUDT typeUDT();
Mask of all interest options which are permitted for this channel.
See Also: - SelectionKey
/**
* Mask of all interest options which are permitted for this channel.
*
* @see SelectionKey
*/
int validOps();
}