Package jade.core.sam

Examples of jade.core.sam.CounterValueProvider


        }
       
        // MESSAGE COUNT
        boolean enablePostedMessageCount = "true".equalsIgnoreCase(myProfile.getParameter(ENABLE_POSTED_MESSAGE_COUNT, "false"));
        if (enablePostedMessageCount) {
          samHelper.addCounterValueProvider("Posted-Message-Count", new CounterValueProvider() {
            public long getValue() {
              return postedMessageCounter;
            }
            public boolean isDifferential() {
              return false;

TOP

Related Classes of jade.core.sam.CounterValueProvider

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.