mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
30 lines
726 B
C#
30 lines
726 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel;
|
|
|
|
namespace Roblox.RccServiceArbiter
|
|
{
|
|
[ServiceContract(Namespace = "http://watrbx.wtf/", Name = "Arbiter", ConfigurationName = "IArbiter")]
|
|
interface IArbiter
|
|
{
|
|
[OperationContract]
|
|
string GetStatsEx(bool clearExceptions);
|
|
|
|
[OperationContract]
|
|
string GetStats();
|
|
|
|
[OperationContract]
|
|
void SetMultiProcess(bool value);
|
|
|
|
[OperationContract]
|
|
void SetRecycleProcess(bool value);
|
|
|
|
[OperationContract]
|
|
void SetThreadConfigScript(string script, bool broadcast);
|
|
|
|
[OperationContract]
|
|
void SetRecycleQueueSize(int value);
|
|
};
|
|
}
|