Sha256: c8364eee029106799b0d1553287a7173f2b6b7c4615c99927d7663332f84ea0b
Contents?: true
Size: 1.51 KB
Versions: 3
Compression:
Stored size: 1.51 KB
Contents
# # Fluentd # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # require 'fluent/plugin' require 'fluent/plugin/input' require 'fluent/compat/call_super_mixin' module Fluent module Compat class Input < Fluent::Plugin::Input # TODO: warn when deprecated def initialize super unless self.class.ancestors.include?(Fluent::Compat::CallSuperMixin) self.class.prepend Fluent::Compat::CallSuperMixin end end # These definitions are to get instance methods of superclass of 3rd party plugins # to make it sure to call super def start super end def before_shutdown super end def shutdown super end def detach_process(&block) log.warn "detach_process is not supported in this version. ignored." block.call end def detach_multi_process(&block) log.warn "detach_process is not supported in this version. ignored." block.call end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
fluentd-0.14.12-x64-mingw32 | lib/fluent/compat/input.rb |
fluentd-0.14.12-x86-mingw32 | lib/fluent/compat/input.rb |
fluentd-0.14.12 | lib/fluent/compat/input.rb |