Files
2025-09-18 17:55:52 -04:00

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);
};
}