aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Grid/MessagingServer/IMessageRegionService.cs
diff options
context:
space:
mode:
authorMW2009-02-22 19:19:24 +0000
committerMW2009-02-22 19:19:24 +0000
commitf3a24e432f214f6b3484b620fabc058966628836 (patch)
tree30b1c2784f2ca6ea20c53ea8ee531984c0c54be7 /OpenSim/Grid/MessagingServer/IMessageRegionService.cs
parent* MXP Clients are now treated as full root agents - including being given a d... (diff)
downloadopensim-SC_OLD-f3a24e432f214f6b3484b620fabc058966628836.zip
opensim-SC_OLD-f3a24e432f214f6b3484b620fabc058966628836.tar.gz
opensim-SC_OLD-f3a24e432f214f6b3484b620fabc058966628836.tar.bz2
opensim-SC_OLD-f3a24e432f214f6b3484b620fabc058966628836.tar.xz
First step in giving the messaging server the modular refactoring treatment. As with the other two servers, this is very much a work in progress.
Diffstat (limited to 'OpenSim/Grid/MessagingServer/IMessageRegionService.cs')
-rw-r--r--OpenSim/Grid/MessagingServer/IMessageRegionService.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/OpenSim/Grid/MessagingServer/IMessageRegionService.cs b/OpenSim/Grid/MessagingServer/IMessageRegionService.cs
new file mode 100644
index 0000000..907e89d
--- /dev/null
+++ b/OpenSim/Grid/MessagingServer/IMessageRegionService.cs
@@ -0,0 +1,11 @@
1using System;
2using OpenSim.Data;
3
4namespace OpenSim.Grid.MessagingServer
5{
6 public interface IMessageRegionService
7 {
8 int ClearRegionCache();
9 RegionProfileData GetRegionInfo(ulong regionhandle);
10 }
11}