forked from SignalR/SignalR
-
Notifications
You must be signed in to change notification settings - Fork 0
Extensibility
davidfowl edited this page Nov 5, 2011
·
27 revisions
SignalR is built with DI in mind. You can replace most of SignalR pieces with your own implementations and even replace the DependencyResolver with one of your own. If you're familiar with DI in ASP.NET MVC, then it should feel similar.
You can replace individual parts of SignalR without replacing the DependencyResolver by calling DependencyResolver.Register(type, Func<object>):
DependencyResolver.Register(typeof(IMessageStore), () => new CustomMessageStore());
The following lists the pluggable interfaces in SignalR.
-
IMessageStore- -
ISignalBus- -
IClientIdFactory- -
IJsonStringifier- -
IPersistentConnectionFactory- -
IHubLocator- -
IHubTypeResolver- -
IHubActivator- -
IHubFactory- -
IJavaScriptProxyGenerator-
You can change the DependencyResolver to use your DI container of choice by calling DependencyResolver.SetResolver. There are already some implementations in the community: