本文整理匯總了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();
}