source: BMXNET_RPMS_dotNET_UTILITIES-BMX/branch/BMX41000/IHS BMX Framework/IndianHealthService.BMXNet/Sevices/RemoteEventService.cs@ 1769

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

Initial Import of BMX4

File size: 781 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4using System.Windows.Forms;
5
6namespace IndianHealthService.BMXNet.Services
7{
8 public interface RemoteEventService
9 {
10 event EventHandler<RemoteEventArgs> RpmsEvent;
11 event EventHandler TimerEvent;
12 Control InvokedControl { get; set; }
13
14 int Subscribe(String anEventName);
15 int Unsubscribe(String anEventName);
16
17 int TriggerEvent(String anEventName, String aParameter,bool raiseBack);
18
19 // Only supported on the Primary Session - used for all sessions
20 bool IsEventPollingEnabled { get; set; }
21 int EventPollingInterval { get; set; }
22 double TimerEventPollingMultiple { get; set; }
23 }
24}
Note: See TracBrowser for help on using the repository browser.