Files
mROA/mROA.Benchmark/ILoadTest.cs
T
2025-08-16 18:30:05 +03:00

15 lines
329 B
C#

using mROA.Abstract;
using mROA.Implementation.Attributes;
namespace mROA.Benchmark
{
[SharedObjectInterface]
public interface ILoadTest : IShared
{
Task<int> Next(int last);
int Last(int next);
void C();
void A();
Task AsyncTest(CancellationToken token = default);
}
}