mirror of
https://github.com/meineerde/rackstash.git
synced 2025-12-26 09:21:12 +00:00
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.
13 lines
263 B
Ruby
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
|