source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/IHS BMX Framework/IndianHealthService.BMXNet/RemoteSessionPoolConsumer.cs@ 1150

Last change on this file since 1150 was 1146, checked in by Sam Habiel, 13 years ago

Initial Import of BMX4

File size: 1.1 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5namespace IndianHealthService.BMXNet
6{
7 /// <summary>
8 /// This interface is used on an UserControl-based components that are designed to work both inside
9 /// the EHR and inside a WinForm application. The "Consumer" interfaces basically tell Frameworks
10 /// that "Consumer" implementating objects need an specific service.
11 /// </summary>
12 /// <remarks>
13 /// This interface is rarely used but is essential for application needing multiple server-side
14 /// jobs.
15 /// </remarks>
16 public interface RemoteSessionPoolConsumer
17 {
18 /// <summary>
19 /// This property will be set with the RemoteSessionPool that is used by the Framework.
20 /// </summary>
21 /// <remarks>
22 /// If you only need one RemoteSession, the most common usage pattern, you do not need the RemoteSessionPoolConsumer
23 /// and should use <see cref="RemoteSessionConsumer"/>.
24 /// </remarks>
25 RemoteSessionPool RemoteSessionPool { set; }
26 }
27}
Note: See TracBrowser for help on using the repository browser.