Continue working on the new EventQueueGetModule. Not finished (or even working)

yet. This shouldn't break anything, but is work in progress, so be careful.
Contains a new file; do your runprebuilds.
This commit is contained in:
Homer Horwitz
2008-09-27 18:33:54 +00:00
parent 358bc41b03
commit 0e10c85617
4 changed files with 165 additions and 29 deletions

View File

@@ -28,6 +28,7 @@
using System;
using OpenSim.Framework;
using OpenMetaverse;
using OpenMetaverse.StructuredData;
using System.Collections.Generic;
using System.Text;
@@ -35,6 +36,6 @@ namespace OpenSim.Region.Interfaces
{
public interface IEventQueue
{
bool Enqueue(object o, UUID avatarID);
bool Enqueue(LLSD o, UUID avatarID);
}
}