當前位置: 首頁>>代碼示例>>Java>>正文


Java Nested類代碼示例

本文整理匯總了Java中org.weakref.jmx.Nested的典型用法代碼示例。如果您正苦於以下問題:Java Nested類的具體用法?Java Nested怎麽用?Java Nested使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


Nested類屬於org.weakref.jmx包,在下文中一共展示了Nested類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getTime

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public TimeStat getTime()
{
    return time;
}
 
開發者ID:airlift,項目名稱:drift,代碼行數:7,代碼來源:JmxMethodInvocationStat.java

示例2: getSuccesses

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getSuccesses()
{
    return successes;
}
 
開發者ID:airlift,項目名稱:drift,代碼行數:7,代碼來源:JmxMethodInvocationStat.java

示例3: getFailures

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getFailures()
{
    return failures;
}
 
開發者ID:airlift,項目名稱:drift,代碼行數:7,代碼來源:JmxMethodInvocationStat.java

示例4: getRetries

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getRetries()
{
    return retries;
}
 
開發者ID:airlift,項目名稱:drift,代碼行數:7,代碼來源:JmxMethodInvocationStat.java

示例5: getTotalFailures

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getTotalFailures()
{
    return totalFailures;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:HiveMetastoreApiStats.java

示例6: getOutputShardsPerCompaction

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public DistributionStat getOutputShardsPerCompaction()
{
    return outputShardsPerCompaction;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardCompactor.java

示例7: getCompactionLatencyMillis

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public DistributionStat getCompactionLatencyMillis()
{
    return compactionLatencyMillis;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardCompactor.java

示例8: getSortedCompactionLatencyMillis

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public DistributionStat getSortedCompactionLatencyMillis()
{
    return sortedCompactionLatencyMillis;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardCompactor.java

示例9: getActiveShardRecovery

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getActiveShardRecovery()
{
    return activeShardRecovery;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardRecoveryStats.java

示例10: getBackgroundShardRecovery

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getBackgroundShardRecovery()
{
    return backgroundShardRecovery;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardRecoveryStats.java

示例11: getGetPartitionNames

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public HiveMetastoreApiStats getGetPartitionNames()
{
    return getPartitionNames;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:CachingHiveMetastoreStats.java

示例12: getShardRecoveryFailure

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getShardRecoveryFailure()
{
    return shardRecoveryFailure;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardRecoveryStats.java

示例13: getShardRecoveryBackupNotFound

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public CounterStat getShardRecoveryBackupNotFound()
{
    return shardRecoveryBackupNotFound;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardRecoveryStats.java

示例14: getShardRecoveryBytesPerSecond

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public DistributionStat getShardRecoveryBytesPerSecond()
{
    return shardRecoveryBytesPerSecond;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:ShardRecoveryStats.java

示例15: getDropTable

import org.weakref.jmx.Nested; //導入依賴的package包/類
@Managed
@Nested
public HiveMetastoreApiStats getDropTable()
{
    return dropTable;
}
 
開發者ID:y-lan,項目名稱:presto,代碼行數:7,代碼來源:CachingHiveMetastoreStats.java


注:本文中的org.weakref.jmx.Nested類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。