Mercurial > hg > ucis.core
annotate Pml/IPmlRpc.cs @ 44:5a2b51b0d71b
USBLib: Fixed initialization of multi-interface USBIO devices
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Wed, 12 Jun 2013 23:08:48 +0200 |
parents | 3ab940a0c7a0 |
children |
rev | line source |
---|---|
0 | 1 ???using System; |
2 using System.Collections.Generic; | |
3 | |
4 namespace UCIS.Pml { | |
5 interface IPmlRpcServer { | |
6 IDictionary<string, Delegate> ExportedMethods { get; } | |
7 IDictionary<string, Object> ExportedObjects { get; } | |
8 } | |
9 interface IPmlRpcClient { | |
10 void Call(String method, params Object[] args); | |
11 void Invoke(String method, params Object[] args); | |
12 void BeginInvoke(String method, Object[] args, AsyncCallback callback, Object state); | |
13 Object EndInvoke(IAsyncResult result); | |
14 } | |
15 } |