forked from autofac/Autofac
-
Notifications
You must be signed in to change notification settings - Fork 0
SignalR Integration Release Notes
alexmg edited this page Jan 22, 2014
·
1 revision
- Added a
RegisterHubsextension method for scanning based registration of hubs. - Changed the Autofac.Integration.SignalR project to target .NET 4.0 instead of .NET 4.5.
- The
RegisterHubsextension method now registers hubs asExternallyOwned. There is no way to create a lifetime scope around hub invocations and we don't want the Disposer on the root lifetime scope holding onto instances. - Removed the
IRegistrationSourcefor the SignalR dependency resolver so that registrations are not automatically created for the default services. This is because of a bug in the SignalR message bus blocking indefinitely when Dispose is called twice (discovered in self-hosting scenario). It is still possible to manually add registrations to replace the default services.