19 lines
482 B
C#
19 lines
482 B
C#
|
|
using JiShe.CollectBus.Protocol.Contracts.Models;
|
|||
|
|
using MassTransit;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.RabbitMQ.Consumers
|
|||
|
|
{
|
|||
|
|
public class MessageIssuedFaultConsumer : IConsumer<Fault<MessageIssuedEvent>>
|
|||
|
|
{
|
|||
|
|
public Task Consume(ConsumeContext<Fault<MessageIssuedEvent>> context)
|
|||
|
|
{
|
|||
|
|
throw new NotImplementedException();
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|