Beispiel #1
0
 public static AMQFrame CreateAMQFrame(ushort channelId, uint PrefetchSize, ushort PrefetchCount, bool Global)
 {
     BasicQosBody body = new BasicQosBody();
     body.PrefetchSize = PrefetchSize;
     body.PrefetchCount = PrefetchCount;
     body.Global = Global;
     		 
     AMQFrame frame = new AMQFrame();
     frame.Channel = channelId;
     frame.BodyFrame = body;
     return frame;
 }
        public static AMQFrame CreateAMQFrame(ushort channelId, uint PrefetchSize, ushort PrefetchCount, bool Global)
        {
            BasicQosBody body = new BasicQosBody();

            body.PrefetchSize  = PrefetchSize;
            body.PrefetchCount = PrefetchCount;
            body.Global        = Global;

            AMQFrame frame = new AMQFrame();

            frame.Channel   = channelId;
            frame.BodyFrame = body;
            return(frame);
        }