aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
diff options
context:
space:
mode:
authorBlueWall2011-08-19 18:47:21 -0400
committerBlueWall2011-08-19 18:47:21 -0400
commit2787207aa287a60a3c7c06fad66d406180033ae2 (patch)
tree8e311f249b2ed665dbb38dd0cb1b8d83215bc3e2 /OpenSim/Region/Framework/Interfaces/IWorldComm.cs
parentGet rid of HttpServer.dll to avoid confusion since we use HttpServer_OpenSim.... (diff)
downloadopensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.zip
opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.gz
opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.bz2
opensim-SC_OLD-2787207aa287a60a3c7c06fad66d406180033ae2.tar.xz
Add llRegionSayTo
llRegionSayTo(key target, integer channel, string messasge) Allows messages to be sent region-wide to a particular prim.
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/IWorldComm.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/IWorldComm.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
index 8da99a0..8f200ae 100644
--- a/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
+++ b/OpenSim/Region/Framework/Interfaces/IWorldComm.cs
@@ -81,6 +81,26 @@ namespace OpenSim.Region.Framework.Interfaces
81 void DeliverMessage(ChatTypeEnum type, int channel, string name, UUID id, string msg); 81 void DeliverMessage(ChatTypeEnum type, int channel, string name, UUID id, string msg);
82 82
83 /// <summary> 83 /// <summary>
84 /// Delivers the message to a specified object in the region.
85 /// </summary>
86 /// <param name='target'>
87 /// Target.
88 /// </param>
89 /// <param name='channel'>
90 /// Channel.
91 /// </param>
92 /// <param name='name'>
93 /// Name.
94 /// </param>
95 /// <param name='id'>
96 /// Identifier.
97 /// </param>
98 /// <param name='msg'>
99 /// Message.
100 /// </param>
101 void DeliverMessageTo(UUID target, int channel, string name, UUID id, string msg);
102
103 /// <summary>
84 /// Are there any listen events ready to be dispatched? 104 /// Are there any listen events ready to be dispatched?
85 /// </summary> 105 /// </summary>
86 /// <returns>boolean indication</returns> 106 /// <returns>boolean indication</returns>