├── .gitattributes ├── .gitignore ├── Abp.RemoteEventBus.sln ├── LICENSE ├── README.md ├── doc └── How it work.md ├── src ├── Abp.RemoteEventBus.Kafka │ ├── Abp.RemoteEventBus.Kafka.csproj │ ├── AbpRemoteEventBusKafkaModule.cs │ ├── ConfigurationExtensions.cs │ ├── IKafkaConfiguration.cs │ ├── IKafkaSetting.cs │ ├── KafkaConfiguration.cs │ ├── KafkaRemoteEventPublisher.cs │ ├── KafkaRemoteEventSubscriber.cs │ └── KafkaSetting.cs ├── Abp.RemoteEventBus.RabbitMQ │ ├── Abp.RemoteEventBus.RabbitMQ.csproj │ ├── AbpRemoteEventBusRabbitMQModule.cs │ ├── ConfigurationExtensions.cs │ ├── IRabbitMQConfiguration.cs │ ├── IRabbitMQSetting.cs │ ├── PooledObjectFactory.cs │ ├── RabbitMQConfiguration.cs │ ├── RabbitMQRemoteEventPublisher.cs │ ├── RabbitMQRemoteEventSubscriber.cs │ └── RabbitMQSetting.cs ├── Abp.RemoteEventBus.Redis │ ├── Abp.RemoteEventBus.Redis.csproj │ ├── AbpRemoteEventBusRedisModule.cs │ ├── ConfigurationExtensions.cs │ ├── IRedisConfiguration.cs │ ├── IRedisSetting.cs │ ├── RedisConfiguration.cs │ ├── RedisRemoteEventPublisher.cs │ ├── RedisRemoteEventSubscriber.cs │ └── RedisSetting.cs └── Abp.RemoteEventBus │ ├── Abp.RemoteEventBus.csproj │ ├── AbpRemoteEventBusModule.cs │ ├── Attributes │ └── RemoteEventHandlerAttribute.cs │ ├── Configuration │ ├── ConfigurationExtensions.cs │ ├── IRemoteEventBusConfiguration.cs │ └── RemoteEventBusConfiguration.cs │ ├── Events │ ├── RemoteEventBusEvent.cs │ ├── RemoteEventBusHandleEvent.cs │ ├── RemoteEventBusHandledEvent.cs │ ├── RemoteEventBusHandlingEvent.cs │ ├── RemoteEventBusPublishEvent.cs │ ├── RemoteEventBusPublishedEvent.cs │ └── RemoteEventBusPublishingEvent.cs │ ├── Exceptions │ ├── RemoteEventHandleExceptionData.cs │ └── RemoteEventMessageHandleExceptionData.cs │ ├── Impl │ ├── AttributeRemoteEventHandler.cs │ ├── JsonRemoteEventSerializer.cs │ ├── NullRemoteEventBus.cs │ ├── NullRemoteEventHandler.cs │ ├── RemoteEventArgs.cs │ ├── RemoteEventBus.cs │ ├── RemoteEventData.cs │ └── RemoteEventTopicSelector.cs │ └── Interface │ ├── IHasTopicRemoteEventData.cs │ ├── IRemoteEventBus.cs │ ├── IRemoteEventData.cs │ ├── IRemoteEventHandler.cs │ ├── IRemoteEventPublisher.cs │ ├── IRemoteEventSerializer.cs │ ├── IRemoteEventSubscriber.cs │ └── IRemoteEventTopicSelector.cs └── test └── Abp.RemoteEventBus.RabbitMQ.Test ├── Abp.RemoteEventBus.RabbitMQ.Test.csproj ├── Program.cs ├── RabbitMQTestModule.cs ├── RemoteEventHandler.cs └── log4net.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/.gitignore -------------------------------------------------------------------------------- /Abp.RemoteEventBus.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/Abp.RemoteEventBus.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/README.md -------------------------------------------------------------------------------- /doc/How it work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/doc/How it work.md -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/Abp.RemoteEventBus.Kafka.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/Abp.RemoteEventBus.Kafka.csproj -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/AbpRemoteEventBusKafkaModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/AbpRemoteEventBusKafkaModule.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/IKafkaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/IKafkaConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/IKafkaSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/IKafkaSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/KafkaConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/KafkaConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/KafkaRemoteEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/KafkaRemoteEventPublisher.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/KafkaRemoteEventSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/KafkaRemoteEventSubscriber.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Kafka/KafkaSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Kafka/KafkaSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/Abp.RemoteEventBus.RabbitMQ.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/Abp.RemoteEventBus.RabbitMQ.csproj -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/AbpRemoteEventBusRabbitMQModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/AbpRemoteEventBusRabbitMQModule.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/IRabbitMQConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/IRabbitMQConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/IRabbitMQSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/IRabbitMQSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/PooledObjectFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/PooledObjectFactory.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/RabbitMQConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/RabbitMQConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/RabbitMQRemoteEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/RabbitMQRemoteEventPublisher.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/RabbitMQRemoteEventSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/RabbitMQRemoteEventSubscriber.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.RabbitMQ/RabbitMQSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.RabbitMQ/RabbitMQSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/Abp.RemoteEventBus.Redis.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/Abp.RemoteEventBus.Redis.csproj -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/AbpRemoteEventBusRedisModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/AbpRemoteEventBusRedisModule.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/IRedisConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/IRedisConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/IRedisSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/IRedisSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/RedisConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/RedisConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/RedisRemoteEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/RedisRemoteEventPublisher.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/RedisRemoteEventSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/RedisRemoteEventSubscriber.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus.Redis/RedisSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus.Redis/RedisSetting.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Abp.RemoteEventBus.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Abp.RemoteEventBus.csproj -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/AbpRemoteEventBusModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/AbpRemoteEventBusModule.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Attributes/RemoteEventHandlerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Attributes/RemoteEventHandlerAttribute.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Configuration/ConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Configuration/ConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Configuration/IRemoteEventBusConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Configuration/IRemoteEventBusConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Configuration/RemoteEventBusConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Configuration/RemoteEventBusConfiguration.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusHandleEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusHandleEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusHandledEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusHandledEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusHandlingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusHandlingEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusPublishEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusPublishEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusPublishedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusPublishedEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Events/RemoteEventBusPublishingEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Events/RemoteEventBusPublishingEvent.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Exceptions/RemoteEventHandleExceptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Exceptions/RemoteEventHandleExceptionData.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Exceptions/RemoteEventMessageHandleExceptionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Exceptions/RemoteEventMessageHandleExceptionData.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/AttributeRemoteEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/AttributeRemoteEventHandler.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/JsonRemoteEventSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/JsonRemoteEventSerializer.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/NullRemoteEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/NullRemoteEventBus.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/NullRemoteEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/NullRemoteEventHandler.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/RemoteEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/RemoteEventArgs.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/RemoteEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/RemoteEventBus.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/RemoteEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/RemoteEventData.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Impl/RemoteEventTopicSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Impl/RemoteEventTopicSelector.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IHasTopicRemoteEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IHasTopicRemoteEventData.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventBus.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventData.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventHandler.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventPublisher.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventSerializer.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventSubscriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventSubscriber.cs -------------------------------------------------------------------------------- /src/Abp.RemoteEventBus/Interface/IRemoteEventTopicSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/src/Abp.RemoteEventBus/Interface/IRemoteEventTopicSelector.cs -------------------------------------------------------------------------------- /test/Abp.RemoteEventBus.RabbitMQ.Test/Abp.RemoteEventBus.RabbitMQ.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/test/Abp.RemoteEventBus.RabbitMQ.Test/Abp.RemoteEventBus.RabbitMQ.Test.csproj -------------------------------------------------------------------------------- /test/Abp.RemoteEventBus.RabbitMQ.Test/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/test/Abp.RemoteEventBus.RabbitMQ.Test/Program.cs -------------------------------------------------------------------------------- /test/Abp.RemoteEventBus.RabbitMQ.Test/RabbitMQTestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/test/Abp.RemoteEventBus.RabbitMQ.Test/RabbitMQTestModule.cs -------------------------------------------------------------------------------- /test/Abp.RemoteEventBus.RabbitMQ.Test/RemoteEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/test/Abp.RemoteEventBus.RabbitMQ.Test/RemoteEventHandler.cs -------------------------------------------------------------------------------- /test/Abp.RemoteEventBus.RabbitMQ.Test/log4net.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wuyi6216/Abp.RemoteEventBus/HEAD/test/Abp.RemoteEventBus.RabbitMQ.Test/log4net.config --------------------------------------------------------------------------------