~ubuntu-branches/ubuntu/saucy/resiprocate/saucy-proposed

« back to all changes in this revision

Viewing changes to resip/stack/StatisticsHandler.hxx

  • Committer: Package Import Robot
  • Author(s): Daniel Pocock
  • Date: 2012-05-17 19:29:59 UTC
  • Revision ID: package-import@ubuntu.com-20120517192959-vv00m77isztdy64q
Tags: upstream-1.8.2
ImportĀ upstreamĀ versionĀ 1.8.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef RESIP_StatisticsHandler_hxx
 
2
#define RESIP_StatisticsHandler_hxx
 
3
 
 
4
namespace resip
 
5
{
 
6
 
 
7
class StatisticsMessage;
 
8
 
 
9
/** Interface functor for external stats handling. 
 
10
  * User can catch stats events before the stack automatically handles them and can
 
11
  * suppress automatic behavior if desired.
 
12
  * @see resip::StatisticsManager::setExternalStatsHandler
 
13
  */ 
 
14
class ExternalStatsHandler {
 
15
   public:
 
16
      virtual ~ExternalStatsHandler()=0;
 
17
      /** .
 
18
            * @param statsMessage contains the current stats for the stack.
 
19
                * @return true to continue processing this message and perform default handling, 
 
20
            * false to supress further handling, including default handling. */
 
21
      virtual bool operator()(StatisticsMessage &statsMessage) = 0; 
 
22
};
 
23
 
 
24
}//namespace resip
 
25
 
 
26
#endif
 
27
 
 
28
/* ====================================================================
 
29
 * The Vovida Software License, Version 1.0 
 
30
 * 
 
31
 * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
 
32
 * 
 
33
 * Redistribution and use in source and binary forms, with or without
 
34
 * modification, are permitted provided that the following conditions
 
35
 * are met:
 
36
 * 
 
37
 * 1. Redistributions of source code must retain the above copyright
 
38
 *    notice, this list of conditions and the following disclaimer.
 
39
 * 
 
40
 * 2. Redistributions in binary form must reproduce the above copyright
 
41
 *    notice, this list of conditions and the following disclaimer in
 
42
 *    the documentation and/or other materials provided with the
 
43
 *    distribution.
 
44
 * 
 
45
 * 3. The names "VOCAL", "Vovida Open Communication Application Library",
 
46
 *    and "Vovida Open Communication Application Library (VOCAL)" must
 
47
 *    not be used to endorse or promote products derived from this
 
48
 *    software without prior written permission. For written
 
49
 *    permission, please contact vocal@vovida.org.
 
50
 *
 
51
 * 4. Products derived from this software may not be called "VOCAL", nor
 
52
 *    may "VOCAL" appear in their name, without prior written
 
53
 *    permission of Vovida Networks, Inc.
 
54
 * 
 
55
 * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
 
56
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 
57
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
 
58
 * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
 
59
 * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
 
60
 * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
 
61
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
 
62
 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
 
63
 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
 
64
 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 
65
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
 
66
 * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
 
67
 * DAMAGE.
 
68
 * 
 
69
 * ====================================================================
 
70
 * 
 
71
 * This software consists of voluntary contributions made by Vovida
 
72
 * Networks, Inc. and many individuals on behalf of Vovida Networks,
 
73
 * Inc.  For more information on Vovida Networks, Inc., please see
 
74
 * <http://www.vovida.org/>.
 
75
 *
 
76
 */
 
77