本文整理汇总了Java中com.espertech.esper.epl.metric.MetricReportingServiceSPI类的典型用法代码示例。如果您正苦于以下问题:Java MetricReportingServiceSPI类的具体用法?Java MetricReportingServiceSPI怎么用?Java MetricReportingServiceSPI使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
MetricReportingServiceSPI类属于com.espertech.esper.epl.metric包,在下文中一共展示了MetricReportingServiceSPI类的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: StatementResultServiceImpl
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Ctor.
*
* @param statementLifecycleSvc handles persistence for statements
* @param metricReportingService for metrics reporting
* @param threadingService for outbound threading
* @param statementName statement name
*/
public StatementResultServiceImpl(String statementName,
StatementLifecycleSvc statementLifecycleSvc,
MetricReportingServiceSPI metricReportingService,
ThreadingService threadingService) {
log.debug(".ctor");
this.statementName = statementName;
this.statementLifecycleSvc = statementLifecycleSvc;
this.metricReportingService = metricReportingService;
if (metricReportingService != null) {
this.statementOutputHooks = metricReportingService.getStatementOutputHooks();
} else {
this.statementOutputHooks = Collections.EMPTY_SET;
}
this.threadingService = threadingService;
}
示例2: StatementResultServiceImpl
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Ctor.
* @param statementLifecycleSvc handles persistence for statements
* @param metricReportingService for metrics reporting
* @param threadingService for outbound threading
*/
public StatementResultServiceImpl(String statementName,
StatementLifecycleSvc statementLifecycleSvc,
MetricReportingServiceSPI metricReportingService,
ThreadingService threadingService)
{
log.debug(".ctor");
this.statementName = statementName;
this.statementLifecycleSvc = statementLifecycleSvc;
this.metricReportingService = metricReportingService;
if (metricReportingService != null) {
this.statementOutputHooks = metricReportingService.getStatementOutputHooks();
}
else {
this.statementOutputHooks = Collections.EMPTY_SET;
}
this.threadingService = threadingService;
}
示例3: TableOnMergeViewFactory
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
public TableOnMergeViewFactory(TableMetadata tableMetadata, TableOnMergeHelper onMergeHelper, StatementResultService statementResultService, StatementMetricHandle metricsHandle, MetricReportingServiceSPI metricReportingService) {
this.tableMetadata = tableMetadata;
this.onMergeHelper = onMergeHelper;
this.statementResultService = statementResultService;
this.metricsHandle = metricsHandle;
this.metricReportingService = metricReportingService;
}
示例4: StatementContextEngineServices
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
public StatementContextEngineServices(String engineURI, EventAdapterService eventAdapterService, NamedWindowMgmtService namedWindowMgmtService, VariableService variableService, TableService tableService, EngineSettingsService engineSettingsService, ValueAddEventService valueAddEventService, ConfigurationInformation configSnapshot, MetricReportingServiceSPI metricReportingService, ViewService viewService, ExceptionHandlingService exceptionHandlingService, ExpressionResultCacheService expressionResultCacheService, StatementEventTypeRef statementEventTypeRef, TableExprEvaluatorContext tableExprEvaluatorContext, EngineLevelExtensionServicesContext engineLevelExtensionServicesContext, RegexHandlerFactory regexHandlerFactory, StatementLockFactory statementLockFactory, ContextManagementService contextManagementService, ViewServicePreviousFactory viewServicePreviousFactory, EventTableIndexService eventTableIndexService, PatternNodeFactory patternNodeFactory, FilterBooleanExpressionFactory filterBooleanExpressionFactory, TimeSourceService timeSourceService, EngineImportService engineImportService, AggregationFactoryFactory aggregationFactoryFactory, SchedulingService schedulingService, ExprDeclaredService exprDeclaredService) {
this.engineURI = engineURI;
this.eventAdapterService = eventAdapterService;
this.namedWindowMgmtService = namedWindowMgmtService;
this.variableService = variableService;
this.tableService = tableService;
this.engineSettingsService = engineSettingsService;
this.valueAddEventService = valueAddEventService;
this.configSnapshot = configSnapshot;
this.metricReportingService = metricReportingService;
this.viewService = viewService;
this.exceptionHandlingService = exceptionHandlingService;
this.expressionResultCacheService = expressionResultCacheService;
this.statementEventTypeRef = statementEventTypeRef;
this.tableExprEvaluatorContext = tableExprEvaluatorContext;
this.engineLevelExtensionServicesContext = engineLevelExtensionServicesContext;
this.regexHandlerFactory = regexHandlerFactory;
this.statementLockFactory = statementLockFactory;
this.contextManagementService = contextManagementService;
this.viewServicePreviousFactory = viewServicePreviousFactory;
this.eventTableIndexService = eventTableIndexService;
this.patternNodeFactory = patternNodeFactory;
this.filterBooleanExpressionFactory = filterBooleanExpressionFactory;
this.timeSourceService = timeSourceService;
this.engineImportService = engineImportService;
this.aggregationFactoryFactory = aggregationFactoryFactory;
this.schedulingService = schedulingService;
this.exprDeclaredService = exprDeclaredService;
}
示例5: StatementContextEngineServices
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
public StatementContextEngineServices(String engineURI, EventAdapterService eventAdapterService, NamedWindowService namedWindowService, VariableService variableService, EngineSettingsService engineSettingsService, ValueAddEventService valueAddEventService, ConfigurationInformation configSnapshot, MetricReportingServiceSPI metricReportingService, ViewService viewService, ExceptionHandlingService exceptionHandlingService, ExpressionResultCacheService expressionResultCacheService) {
this.engineURI = engineURI;
this.eventAdapterService = eventAdapterService;
this.namedWindowService = namedWindowService;
this.variableService = variableService;
this.engineSettingsService = engineSettingsService;
this.valueAddEventService = valueAddEventService;
this.configSnapshot = configSnapshot;
this.metricReportingService = metricReportingService;
this.viewService = viewService;
this.exceptionHandlingService = exceptionHandlingService;
this.expressionResultCacheService = expressionResultCacheService;
}
示例6: getMetricReportingService
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
public MetricReportingServiceSPI getMetricReportingService() {
return metricReportingService;
}
示例7: getMetricsReportingService
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Returns metrics reporting.
* @return metrics reporting
*/
public MetricReportingServiceSPI getMetricsReportingService()
{
return metricsReportingService;
}
示例8: getMetricReportingService
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Returns metrics svc.
*
* @return metrics
*/
public MetricReportingServiceSPI getMetricReportingService() {
return stmtEngineServices.getMetricReportingService();
}
示例9: getMetricsReportingService
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Returns metrics reporting.
*
* @return metrics reporting
*/
public MetricReportingServiceSPI getMetricsReportingService() {
return metricsReportingService;
}
示例10: getMetricReportingService
import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //导入依赖的package包/类
/**
* Returns metrics svc.
* @return metrics
*/
public MetricReportingServiceSPI getMetricReportingService() {
return stmtEngineServices.getMetricReportingService();
}