/src/resiprocate/rutil/AsyncProcessHandler.hxx
Line | Count | Source (jump to first uncovered line) |
1 | | #ifndef RESIP_AsyncProcessHandler_HXX |
2 | | #define RESIP_AsyncProcessHandler_HXX |
3 | | |
4 | | namespace resip |
5 | | { |
6 | | |
7 | | //called when an event from outside the process() lookp of the sipstack occurs |
8 | | //which requires the sipstack to all process() |
9 | | class AsyncProcessHandler |
10 | | { |
11 | | public: |
12 | 0 | virtual ~AsyncProcessHandler() {} |
13 | | virtual void handleProcessNotification() = 0; |
14 | | }; |
15 | | |
16 | | } |
17 | | |
18 | | #endif |
19 | | |
20 | | /* ==================================================================== |
21 | | * The Vovida Software License, Version 1.0 |
22 | | * |
23 | | * Copyright (c) 2000 Vovida Networks, Inc. All rights reserved. |
24 | | * |
25 | | * Redistribution and use in source and binary forms, with or without |
26 | | * modification, are permitted provided that the following conditions |
27 | | * are met: |
28 | | * |
29 | | * 1. Redistributions of source code must retain the above copyright |
30 | | * notice, this list of conditions and the following disclaimer. |
31 | | * |
32 | | * 2. Redistributions in binary form must reproduce the above copyright |
33 | | * notice, this list of conditions and the following disclaimer in |
34 | | * the documentation and/or other materials provided with the |
35 | | * distribution. |
36 | | * |
37 | | * 3. The names "VOCAL", "Vovida Open Communication Application Library", |
38 | | * and "Vovida Open Communication Application Library (VOCAL)" must |
39 | | * not be used to endorse or promote products derived from this |
40 | | * software without prior written permission. For written |
41 | | * permission, please contact vocal@vovida.org. |
42 | | * |
43 | | * 4. Products derived from this software may not be called "VOCAL", nor |
44 | | * may "VOCAL" appear in their name, without prior written |
45 | | * permission of Vovida Networks, Inc. |
46 | | * |
47 | | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED |
48 | | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
49 | | * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND |
50 | | * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL VOVIDA |
51 | | * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES |
52 | | * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL, |
53 | | * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
54 | | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
55 | | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
56 | | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
57 | | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE |
58 | | * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH |
59 | | * DAMAGE. |
60 | | * |
61 | | * ==================================================================== |
62 | | * |
63 | | * This software consists of voluntary contributions made by Vovida |
64 | | * Networks, Inc. and many individuals on behalf of Vovida Networks, |
65 | | * Inc. For more information on Vovida Networks, Inc., please see |
66 | | * <http://www.vovida.org/>. |
67 | | * |
68 | | */ |