Renaming RemoteEndpoint to Proxy

This commit is contained in:
2025-06-27 16:20:17 +03:00
parent f31ddf1604
commit 80490947b1
8 changed files with 12 additions and 91 deletions
-17
View File
@@ -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;
}
}
+2 -2
View File
@@ -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)
{
}
-9
View File
@@ -1,9 +0,0 @@
using mROA.Implementation.Attributes;
namespace Example.Shared
{
[SharedObjectInterface]
public partial interface IPagesList : IDataList<IPage>
{
}
}