Releases: R-Suite/ServiceConnect-CSharp
Releases · R-Suite/ServiceConnect-CSharp
3.0.0
- Support for multi-threaded consumers
- SSL support
- Intercept message-processing pipline with custom filters. See Filters sample application for a complete example.
- Removed dependency on StructureMap. (To use StructureMap, pull down ServiceConnect.Container.StructureMap nuget and set
Bus.Initialize(config =>config.SetContainerType<StructureMapContainer>());when initializing the bus. You can also initialize the bus with your own container by specifyingconfig.InitializeContainer(myStructureMapContainer)) - Ninject container support
Bus.Initialize(config =>config.SetContainerType<NinjectContainer>());
For more information visit http://serviceconnect.io/.
2.0.0
- Implemented Messaging Patterns
- Process Manager
- Supports MongoDB, SqlServer and in-memory persistence.
- Request Reply
- Routing slip
- Streaming data
- Scatter Gather
- Aggregator
- Supports MongoDB and in-memory persistence.
- Recipient List
- Recipient List Reply
- Process Manager
- Auditing support.
- Polymorphic message handling.
- Configurable heartbeat settings.
- Start consuming and scan for message handlers on by default.
- Removed dependency on log4net. Now uses Common Logging.
- Retry connection if RabbitMQ connection is lost.
For more information visit http://rmessagebus.com/.