Ejemplo n.º 1
0
 public QueryJobProtocolEvent(QueryJobProtocolEvent rhs) : base(rhs)
 {
     this.dateValue    = rhs.dateValue;
     this.messageValue = rhs.messageValue;
     this.levelValue   = rhs.levelValue;
     this.objIdValue   = rhs.objIdValue;
     this.eventIdValue = rhs.eventIdValue;
 }
Ejemplo n.º 2
0
        public override void write(Object obj1, BOutput bout1, long version)
        {
            base.write(obj1, bout1, version);
            QueryJobProtocolEvent obj  = (QueryJobProtocolEvent)obj1;
            BOutputBin            bout = (BOutputBin)bout1;
            BBufferBin            bbuf = bout.bbuf;

            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.date);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.level);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putString(obj.message);
            // checkpoint byps.gen.cs.PrintContext:494
            bbuf.putInt(obj.objId);
            if (version >= 900000000000026L)
            {
                // checkpoint byps.gen.cs.PrintContext:494
                bbuf.putInt(obj.eventId);
            }
        }
Ejemplo n.º 3
0
        public override Object read(Object obj1, BInput bin1, long version)
        {
            BInputBin             bin = (BInputBin)bin1;
            QueryJobProtocolEvent obj = (QueryJobProtocolEvent)(obj1 != null ? obj1 : bin.onObjectCreated(new QueryJobProtocolEvent()));

            base.read(obj, bin1, version);
            BBufferBin bbuf = bin.bbuf;

            // checkpoint byps.gen.cs.PrintContext:449
            obj.date = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.level = bbuf.getInt();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.message = bbuf.getString();
            // checkpoint byps.gen.cs.PrintContext:449
            obj.objId = bbuf.getInt();
            if (version >= 900000000000026L)
            {
                // checkpoint byps.gen.cs.PrintContext:449
                obj.eventId = bbuf.getInt();
            }

            return(obj);
        }