diff options
Diffstat (limited to 'OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs')
-rw-r--r-- | OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs index 9d512c6..2407533 100644 --- a/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs +++ b/OpenSim/Framework/Servers/HttpServer/PollServiceEventArgs.cs | |||
@@ -44,13 +44,16 @@ namespace OpenSim.Framework.Servers.HttpServer | |||
44 | public NoEventsMethod NoEvents; | 44 | public NoEventsMethod NoEvents; |
45 | public RequestMethod Request; | 45 | public RequestMethod Request; |
46 | public UUID Id; | 46 | public UUID Id; |
47 | public PollServiceEventArgs(RequestMethod pRequest, HasEventsMethod pHasEvents, GetEventsMethod pGetEvents, NoEventsMethod pNoEvents,UUID pId) | 47 | public int TimeOutms; |
48 | |||
49 | public PollServiceEventArgs(RequestMethod pRequest, HasEventsMethod pHasEvents, GetEventsMethod pGetEvents, NoEventsMethod pNoEvents, UUID pId, int pTimeOutms) | ||
48 | { | 50 | { |
49 | Request = pRequest; | 51 | Request = pRequest; |
50 | HasEvents = pHasEvents; | 52 | HasEvents = pHasEvents; |
51 | GetEvents = pGetEvents; | 53 | GetEvents = pGetEvents; |
52 | NoEvents = pNoEvents; | 54 | NoEvents = pNoEvents; |
53 | Id = pId; | 55 | Id = pId; |
56 | TimeOutms = pTimeOutms; | ||
54 | } | 57 | } |
55 | } | 58 | } |
56 | } | 59 | } |