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


Java MetricReportingServiceSPI類代碼示例

本文整理匯總了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;
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:24,代碼來源:StatementResultServiceImpl.java

示例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;
}
 
開發者ID:mobile-event-processing,項目名稱:Asper,代碼行數:24,代碼來源:StatementResultServiceImpl.java

示例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;
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:8,代碼來源:TableOnMergeViewFactory.java

示例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;
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:30,代碼來源:StatementContextEngineServices.java

示例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;
}
 
開發者ID:mobile-event-processing,項目名稱:Asper,代碼行數:14,代碼來源:StatementContextEngineServices.java

示例6: getMetricReportingService

import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //導入依賴的package包/類
public MetricReportingServiceSPI getMetricReportingService() {
    return metricReportingService;
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:4,代碼來源:TableOnMergeViewFactory.java

示例7: getMetricsReportingService

import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //導入依賴的package包/類
/**
 * Returns metrics reporting.
 * @return metrics reporting
 */
public MetricReportingServiceSPI getMetricsReportingService()
{
    return metricsReportingService;
}
 
開發者ID:mobile-event-processing,項目名稱:Asper,代碼行數:9,代碼來源:EPServicesContext.java

示例8: getMetricReportingService

import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //導入依賴的package包/類
/**
 * Returns metrics svc.
 *
 * @return metrics
 */
public MetricReportingServiceSPI getMetricReportingService() {
    return stmtEngineServices.getMetricReportingService();
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:9,代碼來源:StatementContext.java

示例9: getMetricsReportingService

import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //導入依賴的package包/類
/**
 * Returns metrics reporting.
 *
 * @return metrics reporting
 */
public MetricReportingServiceSPI getMetricsReportingService() {
    return metricsReportingService;
}
 
開發者ID:espertechinc,項目名稱:esper,代碼行數:9,代碼來源:EPServicesContext.java

示例10: getMetricReportingService

import com.espertech.esper.epl.metric.MetricReportingServiceSPI; //導入依賴的package包/類
/**
 * Returns metrics svc.
 * @return metrics
 */
public MetricReportingServiceSPI getMetricReportingService() {
    return stmtEngineServices.getMetricReportingService();
}
 
開發者ID:mobile-event-processing,項目名稱:Asper,代碼行數:8,代碼來源:StatementContext.java


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