public static AMQFrame CreateAMQFrame(ushort channelId, uint PrefetchSize, ushort PrefetchCount, bool Global) { FileQosBody body = new FileQosBody(); 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) { FileQosBody body = new FileQosBody(); body.PrefetchSize = PrefetchSize; body.PrefetchCount = PrefetchCount; body.Global = Global; AMQFrame frame = new AMQFrame(); frame.Channel = channelId; frame.BodyFrame = body; return(frame); }