当前位置: 首页>>代码示例>>Java>>正文


Java Context.with方法代码示例

本文整理汇总了Java中org.terracotta.management.model.context.Context.with方法的典型用法代码示例。如果您正苦于以下问题:Java Context.with方法的具体用法?Java Context.with怎么用?Java Context.with使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.terracotta.management.model.context.Context的用法示例。


在下文中一共展示了Context.with方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: ServerCacheExposedStatistics

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
ServerCacheExposedStatistics(Context context, ServerCacheBinding binding, StatisticRegistry statisticRegistry) {
  super(context.with("type", "ServerCache"), binding, statisticRegistry);

  OperationStatisticDescriptor<CacheOperationOutcomes.GetOutcome> get = OperationStatisticDescriptor.descriptor("get", singleton("cluster"), CacheOperationOutcomes.GetOutcome.class);
  OperationStatisticDescriptor<CacheOperationOutcomes.PutOutcome> put = OperationStatisticDescriptor.descriptor("put", singleton("cluster"), CacheOperationOutcomes.PutOutcome.class);
  OperationStatisticDescriptor<CacheOperationOutcomes.ClearOutcome> clear = OperationStatisticDescriptor.descriptor("clear", singleton("cluster"), CacheOperationOutcomes.ClearOutcome.class);

  getStatisticRegistry().registerStatistic("Cluster:HitCount", get, of(CacheOperationOutcomes.GetOutcome.HIT));
  getStatisticRegistry().registerStatistic("Cluster:MissCount", get, of(CacheOperationOutcomes.GetOutcome.MISS));
  getStatisticRegistry().registerStatistic("Cluster:PutCount", put, of(CacheOperationOutcomes.PutOutcome.SUCCESS));
  getStatisticRegistry().registerStatistic("Cluster:ClearCount", clear, allOf(CacheOperationOutcomes.ClearOutcome.class));

  getStatisticRegistry().registerStatistic("Size", descriptor("size", singleton("cluster")));

  getStatisticRegistry().registerTable("Cluster:CacheEntryLength", () -> {
    Map<String, String> snapshot = binding.getValue().getData();
    return Table.newBuilder("KeyLength", "ValueLength")
        .withRows(snapshot.keySet(), (key, rowBuilder) -> rowBuilder
            .setStatistic("KeyLength", StatisticType.GAUGE, key.length())
            .setStatistic("ValueLength", StatisticType.COUNTER, snapshot.get(key).length()))
        .build();
  });
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:24,代码来源:ServerCacheStatisticsManagementProvider.java

示例2: sendManagementCallRequest

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
@Override
public String sendManagementCallRequest(ClientDescriptor caller, final Context context, String capabilityName, String methodName, Class<?> returnType, Parameter... parameters) {
  LOGGER.trace("[{}] sendManagementCallRequest({}, {}, {})", consumerId, context, capabilityName, methodName);

  String managementCallIdentifier = UUID.randomUUID().toString();
  Context fullContext = null;

  if (context.contains(Client.KEY)) {
    // handle client call
    ClientIdentifier to = ClientIdentifier.valueOf(context.get(Client.KEY));
    fullContext = context.with(topologyService.getManageableClientContext(to)
        .orElseThrow(() -> new IllegalArgumentException("Client " + to + " is either not found or not manageable")));
  }

  if ((context.contains(Server.NAME_KEY) || context.contains(Server.KEY))
      && (context.contains(ServerEntity.CONSUMER_ID) || context.contains(ServerEntity.TYPE_KEY) && context.contains(ServerEntity.NAME_KEY))) {
    // handle entity call
    String serverName = context.getOrDefault(Server.NAME_KEY, context.get(Server.KEY));
    Context entityCtx = (context.contains(ServerEntity.CONSUMER_ID) ?
        topologyService.getManageableEntityContext(serverName, Long.parseLong(context.get(ServerEntity.CONSUMER_ID))) :
        topologyService.getManageableEntityContext(serverName, context.get(ServerEntity.NAME_KEY), context.get(ServerEntity.TYPE_KEY)))
        .orElseThrow(() -> new IllegalArgumentException("Server Entity " + context + " is either not found or not manageable"));
    fullContext = context.with(entityCtx);
  }

  if (fullContext == null) {
    // this method is called from an entity invoke, so throwing is OK
    throw new IllegalArgumentException(context.toString());
  }

  track(caller, managementCallIdentifier);

  firingService.fireManagementCallRequest(managementCallIdentifier, new ContextualCall<>(fullContext, capabilityName, methodName, returnType, parameters));

  return managementCallIdentifier;
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:37,代码来源:DefaultManagementService.java

示例3: getContext

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
@Override
public Context getContext() {
  Context context = super.getContext()
      .with(NAME_KEY, getName())
      .with(TYPE_KEY, getType());
  if (consumerId > 0) {
    context = context.with(CONSUMER_ID, String.valueOf(consumerId));
  }
  return context;
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:11,代码来源:ServerEntity.java

示例4: call

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
@Override
public Future<String> call(@ClientId Object callerDescriptor, Context context, String capabilityName, String methodName, Class<?> returnType, Parameter... parameters) {
  if (context.contains(Stripe.KEY)) {
    context = context.with(Stripe.KEY, "SINGLE");
  }
  return CompletableFuture.completedFuture(managementService.sendManagementCallRequest((ClientDescriptor) callerDescriptor, context, capabilityName, methodName, returnType, parameters));
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:8,代码来源:ActiveNmsServerEntity.java

示例5: ExposedServerCacheBinding

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
ExposedServerCacheBinding(Context context, ServerCacheBinding binding) {
  super(context.with("type", "ServerCache"), binding);
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:4,代码来源:ServerCacheSettingsManagementProvider.java

示例6: ExposedClientStateBinding

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
ExposedClientStateBinding(Context context, ClientStateBinding clientBinding) {
  super(context.with("type", "ClientState"), clientBinding);
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:4,代码来源:ClientStateSettingsManagementProvider.java

示例7: OffHeapResourceBindingExposedStatistics

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
OffHeapResourceBindingExposedStatistics(Context context, OffHeapResourceBinding binding, StatisticRegistry statisticRegistry) {
  super(context.with("type", "OffHeapResource"), binding, statisticRegistry);

  getStatisticRegistry().registerStatistic("AllocatedMemory", descriptor("allocatedMemory", "tier", "OffHeapResource"));
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:6,代码来源:OffHeapResourceStatisticsManagementProvider.java

示例8: ExposedOffHeapResourceBinding

import org.terracotta.management.model.context.Context; //导入方法依赖的package包/类
ExposedOffHeapResourceBinding(Context context, OffHeapResourceBinding binding) {
  super(context.with("type", "OffHeapResource"), binding);
}
 
开发者ID:Terracotta-OSS,项目名称:terracotta-platform,代码行数:4,代码来源:OffHeapResourceSettingsManagementProvider.java


注:本文中的org.terracotta.management.model.context.Context.with方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。