change cap eventqueue to use some of those useless changes

This commit is contained in:
UbitUmarov
2020-10-10 20:29:12 +01:00
parent 473580652b
commit 9c01e8b0c4
5 changed files with 428 additions and 415 deletions

View File

@@ -117,12 +117,10 @@ namespace OpenSim.Tests.Common
{
return true;
}
/*
public void DisableSimulator(ulong handle, UUID avatarID)
{
AddEvent(avatarID, "DisableSimulator", handle);
}
*/
public bool Enqueue(osUTF8 o, UUID avatarID)
{
return true;
}
public void EnableSimulator (ulong handle, IPEndPoint endPoint, UUID avatarID, int regionSizeX, int regionSizeY)
{
AddEvent(avatarID, "EnableSimulator", handle);
@@ -207,21 +205,17 @@ namespace OpenSim.Tests.Common
{
}
public StringBuilder StartEvent(string eventName)
public osUTF8 StartEvent(string eventName)
{
return null;
}
public StringBuilder StartEvent(string eventName, int cap)
public osUTF8 StartEvent(string eventName, int cap)
{
return null;
}
public string EndEvent(StringBuilder sb)
{
return "";
}
public byte[] EndEventToBytes(StringBuilder sb)
public byte[] EndEventToBytes(osUTF8 sb)
{
return new byte[0];
}