Exemplo n.º 1
0
 //Writes variable length long varibale to the stream
 public override void writeVLong(long l)
 {
     try
     {
         UnsignedNumeric.writeUnsignedLong(this, l);
     }
     catch (IOException e)
     {
         logger.Warn(e);
         throw new TransportException(e);
     }
 }