/**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 @SuppressWarnings("unchecked")
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   newFeatures = (TGLinkedList) _stream.readObject();
   name = (TString) _stream.readObject();
   content = (Transportable) _stream.readObject();
 }
Example #2
0
 protected ConsensusID(uka.transport.UnmarshalStream _stream, int _size)
     throws java.io.IOException, ClassNotFoundException {
   byte[] _buffer = _stream.getBuffer();
   int _pos = _stream.getPosition();
   protocolValue = uka.transport.BasicIO.extractInt(_buffer, _pos);
   _pos += uka.transport.BasicIO.SIZEOF_int;
 }
 protected Terminate(uka.transport.UnmarshalStream _stream, int _size)
     throws java.io.IOException, ClassNotFoundException {
   _stream.request(_size);
 }
 /** Used by uka.transport.UnmarshalStream to unmarshal the object */
 public Terminate(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   this(_stream, _SIZE);
   _stream.accept(_SIZE);
 }
 /**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 @SuppressWarnings("unchecked")
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   newFeatures = (framework.libraries.serialization.TGLinkedList) _stream.readObject();
   name = (framework.libraries.serialization.TString) _stream.readObject();
 }
Example #6
0
 /**
  * Method of interface Transportable, it must be declared public. It is called from within
  * UnmarshalStream after creating the object and assigning a stream reference to it.
  */
 public void unmarshalReferences(uka.transport.UnmarshalStream _stream)
     throws java.io.IOException, ClassNotFoundException {
   this.value = (TLong) _stream.readObject();
 }