com.threerings.presents.util
Class DatagramSequencer.SendRecord

java.lang.Object
  extended by com.threerings.presents.util.DatagramSequencer.SendRecord
Enclosing class:
DatagramSequencer

protected static class DatagramSequencer.SendRecord
extends Object

A record of a sent datagram.


Field Summary
 Set<Class<?>> mappedClasses
          The set of classes for which mappings were included in the datagram (or null for none).
 Set<String> mappedInterns
          The set of interns for which mappings were included in the datagram (or null for none).
 int number
          The sequence number of the datagram.
 
Constructor Summary
DatagramSequencer.SendRecord(int number, Set<Class<?>> mappedClasses, Set<String> mappedInterns)
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

number

public int number
The sequence number of the datagram.


mappedClasses

public Set<Class<?>> mappedClasses
The set of classes for which mappings were included in the datagram (or null for none).


mappedInterns

public Set<String> mappedInterns
The set of interns for which mappings were included in the datagram (or null for none).

Constructor Detail

DatagramSequencer.SendRecord

public DatagramSequencer.SendRecord(int number,
                                    Set<Class<?>> mappedClasses,
                                    Set<String> mappedInterns)