Line data Source code
1 : #region Copyright
2 : // // -----------------------------------------------------------------------
3 : // // <copyright company="Chinchilla Software Limited">
4 : // // Copyright Chinchilla Software Limited. All rights reserved.
5 : // // </copyright>
6 : // // -----------------------------------------------------------------------
7 : #endregion
8 :
9 : using System;
10 :
11 : namespace Cqrs.Akka.Configuration
12 : {
13 : /// <summary>
14 : /// Resolves handlers for use with Akka.Net
15 : /// </summary>
16 : public interface IHandlerResolver
17 : {
18 : /// <summary>
19 : /// Resolves instances of <paramref name="handerType"/>.
20 : /// </summary>
21 1 : object Resolve(Type handerType, object rsn);
22 : }
23 : }
|