Package com.sun.sgs.profile.ProfileConsumer

Examples of com.sun.sgs.profile.ProfileConsumer.ProfileDataType


    DataServiceStats(ProfileCollector collector) {
        ProfileConsumer consumer =
            collector.getConsumer(ProfileCollectorImpl.CORE_CONSUMER_PREFIX +
                                  "DataService");
        ProfileLevel level = ProfileLevel.MAX;
        ProfileDataType type = ProfileDataType.TASK_AND_AGGREGATE;
       
        // Manager operations
  addDataConflictListenerOp =
      consumer.createOperation("addDataConflictListenerOp", type, level);
        createRefOp =
View Full Code Here


    DataStoreStats(ProfileCollector collector) {
        ProfileConsumer consumer =
            collector.getConsumer(ProfileCollectorImpl.CORE_CONSUMER_PREFIX
                                  + "DataStore");
        ProfileLevel level = ProfileLevel.MAX;
        ProfileDataType type = ProfileDataType.TASK_AND_AGGREGATE;
       
  addDataConflictListenerOp =
            consumer.createOperation("addDataConflictListener", type, level);
  createObjectOp =
            consumer.createOperation("createObject", type, level);
View Full Code Here

TOP

Related Classes of com.sun.sgs.profile.ProfileConsumer.ProfileDataType

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.