Including tools into codegen
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System.Threading;
|
||||
using System.Threading.Tasks;
|
||||
using mROA.Abstract;
|
||||
using mROA.Implementation;
|
||||
using mROA.Implementation.Attributes;
|
||||
|
||||
@@ -15,4 +16,35 @@ namespace Example.Shared
|
||||
|
||||
Task AsyncTest(CancellationToken token = default);
|
||||
}
|
||||
|
||||
partial class LoadTestRemoteEndpoint2
|
||||
: RemoteObjectBase, ILoadTest
|
||||
{
|
||||
public LoadTestRemoteEndpoint2(int id, IRepresentationModule representationModule, IEndPointContext context)
|
||||
: base(id, representationModule, context)
|
||||
{
|
||||
}
|
||||
|
||||
public void A(){
|
||||
CallAsync(0).Wait();
|
||||
}
|
||||
|
||||
public async System.Threading.Tasks.Task AsyncTest(System.Threading.CancellationToken token){
|
||||
await CallAsync(1, cancellationToken : token);
|
||||
}
|
||||
|
||||
public void C(){
|
||||
CallAsync(2).Wait();
|
||||
}
|
||||
|
||||
public System.Int32 Last(System.Int32 next){
|
||||
return GetResultAsync<System.Int32>(3, new System.Object[] { next }).GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
public System.Int32 Next(System.Int32 last){
|
||||
return GetResultAsync<System.Int32>(4, new System.Object[] { last }).GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user