Renaming RemoteEndpoint to Proxy
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using mROA.Implementation;
|
||||
|
||||
namespace Example.Shared
|
||||
{
|
||||
public interface IDataList<T> : IShared, IDisposable
|
||||
{
|
||||
IReadOnlyList<T> Collection { get; }
|
||||
T this[int index] { get; set; }
|
||||
T Get(int index);
|
||||
void Add(T item);
|
||||
void Remove(int index, T item);
|
||||
event Action<T> OnAdd;
|
||||
event Action<T> OnRemove;
|
||||
}
|
||||
}
|
||||
@@ -17,10 +17,10 @@ namespace Example.Shared
|
||||
Task AsyncTest(CancellationToken token = default);
|
||||
}
|
||||
|
||||
partial class LoadTestRemoteEndpoint2
|
||||
partial class LoadTestProxy2
|
||||
: RemoteObjectBase, ILoadTest
|
||||
{
|
||||
public LoadTestRemoteEndpoint2(int id, IRepresentationModule representationModule, IEndPointContext context)
|
||||
public LoadTestProxy2(int id, IRepresentationModule representationModule, IEndPointContext context)
|
||||
: base(id, representationModule, context)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -1,9 +0,0 @@
|
||||
using mROA.Implementation.Attributes;
|
||||
|
||||
namespace Example.Shared
|
||||
{
|
||||
[SharedObjectInterface]
|
||||
public partial interface IPagesList : IDataList<IPage>
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user