akka.actor
Interface IO.WriteHandle

All Superinterfaces:
scala.Equals, IO.Handle, scala.Product
All Known Implementing Classes:
IO.SocketHandle
Enclosing class:
IO

public static interface IO.WriteHandle
extends IO.Handle, scala.Product

A IO.Handle to a WritableByteChannel.


Method Summary
 IO.WriteHandle asWritable()
           
 void write(ByteString bytes)
          Sends a request to the IOManager to write to the Channel associated with this IO.Handle.
 
Methods inherited from interface akka.actor.IO.Handle
asReadable, asServer, asSocket, close, hashCode, ioManager, owner, uuid
 
Methods inherited from interface scala.Product
productArity, productElement, productIterator, productPrefix
 
Methods inherited from interface scala.Equals
canEqual, equals
 

Method Detail

asWritable

IO.WriteHandle asWritable()
Specified by:
asWritable in interface IO.Handle

write

void write(ByteString bytes)
Sends a request to the IOManager to write to the Channel associated with this IO.Handle.

This can also be performed by sending IO.Write to the IOManager.