1
0
mirror of https://github.com/meineerde/rackstash.git synced 2025-12-26 09:21:12 +00:00
Holger Just b2c1a1da0e Rename Target(List) to Flow(s)
Since a flow will significantly affect the representation of a log event
over its life before being persistet by the final adapter, the new term
better reflects what it is responsible for.

It also helps to avoid the dupliction of meaning between Sink, Target,
Adapter.
2017-05-06 14:47:40 +02:00

13 lines
263 B
Ruby

# Copyright 2017 Holger Just
#
# This software may be modified and distributed under the terms
# of the MIT license. See the LICENSE.txt file for details.
module Rackstash
class Flow
def initialize(adapter = nil)
@adapter = adapter
end
end
end