org.openflow.gui.net.protocol
Class PollStop

java.lang.Object
  extended by org.openflow.gui.net.protocol.OFGMessage
      extended by org.openflow.gui.net.protocol.PollStop
All Implemented Interfaces:
Message<OFGMessageType>

public class PollStop
extends OFGMessage

Tells the backend to stop polling for a given message.

Author:
David Underhill

Field Summary
 int xid_to_stop_polling
          the message transaction ID to stop polling
 
Fields inherited from class org.openflow.gui.net.protocol.OFGMessage
SIZEOF, timeCreated, TSSEP, type, xid
 
Constructor Summary
PollStop(int xid_to_stop_polling)
           
 
Method Summary
 int length()
          This returns the maximum length of PollStop
 java.lang.String toString()
          String representation of the message including the date and type.
 void write(java.io.DataOutput out)
          Writes the header (via super.write()), and this message
 
Methods inherited from class org.openflow.gui.net.protocol.OFGMessage
getType, isStatefulReply, isStatefulRequest, timeCreated
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

xid_to_stop_polling

public final int xid_to_stop_polling
the message transaction ID to stop polling

Constructor Detail

PollStop

public PollStop(int xid_to_stop_polling)
Method Detail

length

public int length()
This returns the maximum length of PollStop

Overrides:
length in class OFGMessage

write

public void write(java.io.DataOutput out)
           throws java.io.IOException
Writes the header (via super.write()), and this message

Overrides:
write in class OFGMessage
Throws:
java.io.IOException

toString

public java.lang.String toString()
Description copied from class: OFGMessage
String representation of the message including the date and type. Also includes the transaction ID if it is non-zero.

Overrides:
toString in class OFGMessage