Line | |
---|
1 | using System;
|
---|
2 | using System.Collections.Generic;
|
---|
3 | using System.Text;
|
---|
4 |
|
---|
5 | namespace 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.