# encoding: utf-8 require 'one_apm/support/event_buffer' module OneApm module Agent class SizedBuffer < EventBuffer def append_event(x) if @items.size < @capacity @items << x return x else return nil end end end end end