org.jboss.wsf.spi.deployment.Endpoint.getEndpointMetrics()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(4.3k)|赞(0)|评价(0)|浏览(199)

本文整理了Java中org.jboss.wsf.spi.deployment.Endpoint.getEndpointMetrics()方法的一些代码示例,展示了Endpoint.getEndpointMetrics()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Endpoint.getEndpointMetrics()方法的具体详情如下:
包路径:org.jboss.wsf.spi.deployment.Endpoint
类名称:Endpoint
方法名:getEndpointMetrics

Endpoint.getEndpointMetrics介绍

[英]Get the endpoint metrics for this endpoint
[中]获取此终结点的终结点度量

代码示例

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getResponseCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getResponseCount() : 0;
}

代码示例来源:origin: org.jboss.ws.native/jbossws-native-core

private void processFaultMetrics(Endpoint endpoint, long beginTime)
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 if (metrics != null)
   metrics.processFaultMessage(beginTime);
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getRequestCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getRequestCount() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

@Override
public long getUpdateTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getUpdateTime() : 0;
}
public void start()

代码示例来源:origin: org.jboss.ws.native/jbossws-native-core

private void processResponseMetrics(Endpoint endpoint, long beginTime)
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 if (metrics != null)
   metrics.processResponseMessage(beginTime);
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public long getFaultCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getFaultCount() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public long getMinProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getMinProcessingTime() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getTotalProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getTotalProcessingTime() : 0;
}
@Override

代码示例来源:origin: org.jboss.ws.cxf/jbossws-cxf-server

private long initRequestMetrics(Endpoint endpoint)
{
 long beginTime = 0;
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 if (metrics != null)
   beginTime = metrics.processRequestMessage();
 return beginTime;
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public long getMaxProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getMaxProcessingTime() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getAverageProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getAverageProcessingTime() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getFaultCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getFaultCount() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getMinProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getMinProcessingTime() : 0;
}

代码示例来源:origin: org.jboss.ws.cxf/jbossws-cxf-server

private void processResponseMetrics(Endpoint endpoint, long beginTime)
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 if (metrics != null)
   metrics.processResponseMessage(beginTime);
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public long getResponseCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getResponseCount() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-common

public long getMaxProcessingTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getMaxProcessingTime() : 0;
}

代码示例来源:origin: org.jboss.ws.native/jbossws-native-core

private long initRequestMetrics(Endpoint endpoint)
{
 long beginTime = 0;
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 if (metrics != null)
   beginTime = metrics.processRequestMessage();
 return beginTime;
}

代码示例来源:origin: org.jboss.ws.cxf/jbossws-cxf-server

private void processFaultMetrics(Endpoint endpoint, long beginTime)
  {
   EndpointMetrics metrics = endpoint.getEndpointMetrics();
   if (metrics != null)
     metrics.processFaultMessage(beginTime);
  }
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public long getRequestCount()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getRequestCount() : 0;
}

代码示例来源:origin: org.jboss.ws/jbossws-framework

public Date getStopTime()
{
 EndpointMetrics metrics = endpoint.getEndpointMetrics();
 return metrics != null ? metrics.getStopTime() : null;
}

相关文章