Sha256: bf4703c1f01d1ce99e39295e17fb046cdc09ca6de96a650fee505b844068ed1e
Contents?: true
Size: 1.03 KB
Versions: 130
Compression:
Stored size: 1.03 KB
Contents
module SplitIoClient module Cache module Repositories module Events class MemoryRepository < EventsRepository EVENTS_MAX_SIZE_BYTES = 5242880 def initialize(config) @config = config @adapter = @config.events_adapter @size = 0 end def add(key, traffic_type, event_type, time, value, properties, event_size) @adapter.add_to_queue(m: metadata, e: event(key, traffic_type, event_type, time, value, properties)) @size += event_size post_events if @size >= EVENTS_MAX_SIZE_BYTES || @adapter.length == @config.events_queue_size rescue StandardError => error @config.log_found_exception(__method__.to_s, error) end def clear @size = 0 @adapter.clear end def batch return [] if @config.events_queue_size.zero? @adapter.get_batch(@config.events_queue_size) end end end end end end
Version data entries
130 entries across 130 versions & 1 rubygems