Mercurial > hg > ucis.core
view Pml/IPmlRpc.cs @ 73:6aca18ee4ec6
NaCl: improved ed25519 implementation, added simple API for ed25519 and sha512
author | Ivo Smits <Ivo@UCIS.nl> |
---|---|
date | Sat, 02 Nov 2013 16:01:09 +0100 |
parents | 3ab940a0c7a0 |
children |
line wrap: on
line source
???using System; using System.Collections.Generic; namespace UCIS.Pml { interface IPmlRpcServer { IDictionary<string, Delegate> ExportedMethods { get; } IDictionary<string, Object> ExportedObjects { get; } } interface IPmlRpcClient { void Call(String method, params Object[] args); void Invoke(String method, params Object[] args); void BeginInvoke(String method, Object[] args, AsyncCallback callback, Object state); Object EndInvoke(IAsyncResult result); } }