Sha256: 3f5ccce7b9ade37b0b350b7548abd53eacffc2d8f2812940cc72230a253b0dbc
Contents?: true
Size: 737 Bytes
Versions: 32
Compression:
Stored size: 737 Bytes
Contents
# frozen_string_literal: true module SplitIoClient module Telemetry class RuntimeConsumer extend Forwardable def_delegators :@runtime, :pop_tags, :impressions_stats, :events_stats, :last_synchronizations, :pop_http_errors, :pop_http_latencies, :pop_auth_rejections, :pop_token_refreshes, :pop_streaming_events, :session_length, :pop_updates_from_sse def initialize(config) @runtime = SplitIoClient::Telemetry::MemoryRuntimeConsumer.new(config) end end end end
Version data entries
32 entries across 32 versions & 1 rubygems