Beispiel #1
0
 public RabbitOperation(IRabbitContext context, IRabbitFactory factory)
 {
     _factory = factory;
     _context = context;
     _context.SetChannel(CommonSetting.Queue_Name);
     CreatConsumer(CommonSetting.Queue_Name);
     MessagePackSerializer.SetDefaultResolver(ContractlessStandardResolver.Instance);
 }
 public BaseQueueAction(IRabbitContext context)
 {
     _context = context;
 }
 public SendDirectionQueueAction(IRabbitContext context) : base(context)
 {
 }
Beispiel #4
0
 public NoneQueueAction(IRabbitContext context) : base(context)
 {
 }
 public AddQueueAction(IRabbitContext context) : base(context)
 {
 }
 public RemoveQueueAction(IRabbitContext context) : base(context)
 {
 }
Beispiel #7
0
 public SendAllQueueAction(IRabbitContext context) : base(context)
 {
 }
 public ListQueueAction(IRabbitContext context) : base(context)
 {
 }