diff options
author | Justin Clark-Casey (justincc) | 2015-01-12 20:56:37 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2015-01-12 20:56:37 +0000 |
commit | 8e1e8a0920a9e94305619e9afb8e053b4daefb89 (patch) | |
tree | cc6cb595807393c465f520cd1a1fc7a8aab33b2d /OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |
parent | SimulatorFeatures: the viewer also takes GridName in OpenSim extras. Added th... (diff) | |
download | opensim-SC-8e1e8a0920a9e94305619e9afb8e053b4daefb89.zip opensim-SC-8e1e8a0920a9e94305619e9afb8e053b4daefb89.tar.gz opensim-SC-8e1e8a0920a9e94305619e9afb8e053b4daefb89.tar.bz2 opensim-SC-8e1e8a0920a9e94305619e9afb8e053b4daefb89.tar.xz |
Make the performance controlling job processing threads introduced in conference code use a generic JobEngine class rather than 4 slightly different copy/pasted versions.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 5da0ca1..bb4f8a7 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | |||
@@ -724,10 +724,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
724 | object obj = new AsyncPacketProcess(this, pprocessor.method, packet); | 724 | object obj = new AsyncPacketProcess(this, pprocessor.method, packet); |
725 | 725 | ||
726 | if (pprocessor.InEngine) | 726 | if (pprocessor.InEngine) |
727 | m_udpServer.IpahEngine.QueueRequest( | 727 | m_udpServer.IpahEngine.QueueJob(packet.Type.ToString(), () => ProcessSpecificPacketAsync(obj)); |
728 | packet.Type.ToString(), | ||
729 | ProcessSpecificPacketAsync, | ||
730 | obj); | ||
731 | else | 728 | else |
732 | Util.FireAndForget(ProcessSpecificPacketAsync, obj, packet.Type.ToString()); | 729 | Util.FireAndForget(ProcessSpecificPacketAsync, obj, packet.Type.ToString()); |
733 | 730 | ||