コード例 #1
0
 public override void _Private_BasicConsume(
     System.String @queue,
     System.String @consumerTag,
     System.Boolean @noLocal,
     System.Boolean @noAck,
     System.Boolean @exclusive,
     System.Boolean @nowait,
     System.Collections.IDictionary @arguments)
 {
     BasicConsume __req = new BasicConsume();
       __req.m_queue = @queue;
       __req.m_consumerTag = @consumerTag;
       __req.m_noLocal = @noLocal;
       __req.m_noAck = @noAck;
       __req.m_exclusive = @exclusive;
       __req.m_nowait = @nowait;
       __req.m_arguments = @arguments;
       ModelSend(__req,null,null);
 }
コード例 #2
0
   public override void _Private_BasicConsume(
 string @queue,
 string @consumerTag,
 bool @noLocal,
 bool @noAck,
 bool @exclusive,
 bool @nowait,
 System.Collections.Generic.IDictionary<string, object> @arguments)
   {
       BasicConsume __req = new BasicConsume();
         __req.m_queue = @queue;
         __req.m_consumerTag = @consumerTag;
         __req.m_noLocal = @noLocal;
         __req.m_noAck = @noAck;
         __req.m_exclusive = @exclusive;
         __req.m_nowait = @nowait;
         __req.m_arguments = @arguments;
         ModelSend(__req,null,null);
   }