aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
diff options
context:
space:
mode:
authorUbitUmarov2017-05-21 02:20:40 +0100
committerUbitUmarov2017-05-21 02:20:40 +0100
commite520dba7175be517d6b7f05071fb6c41dc155770 (patch)
tree51598fe8bdebb4d5e8cbee35e3abea144f33417f /OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
parentmerge (diff)
parentremove LongPoll type and queues. Events should now have reduced latency also.... (diff)
downloadopensim-SC-e520dba7175be517d6b7f05071fb6c41dc155770.zip
opensim-SC-e520dba7175be517d6b7f05071fb6c41dc155770.tar.gz
opensim-SC-e520dba7175be517d6b7f05071fb6c41dc155770.tar.bz2
opensim-SC-e520dba7175be517d6b7f05071fb6c41dc155770.tar.xz
Merge branch 'master' into httptests
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs')
-rw-r--r--OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
index a1bc27b..7c7d08d 100644
--- a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
+++ b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs
@@ -52,7 +52,7 @@ namespace OpenSim.Framework.Servers.HttpServer
52 52
53 public enum EventType : int 53 public enum EventType : int
54 { 54 {
55 LongPoll = 0, 55 Poll = 0,
56 LslHttp = 1, 56 LslHttp = 1,
57 Inventory = 2, 57 Inventory = 2,
58 Texture = 3, 58 Texture = 3,
@@ -85,7 +85,7 @@ namespace OpenSim.Framework.Servers.HttpServer
85 Drop = pDrop; 85 Drop = pDrop;
86 Id = pId; 86 Id = pId;
87 TimeOutms = pTimeOutms; 87 TimeOutms = pTimeOutms;
88 Type = EventType.LongPoll; 88 Type = EventType.Poll;
89 } 89 }
90 } 90 }
91} 91}