Sha256: 28c228950d8a341b68d6fe607c8eed5be62b34c12ab42008fda60f4e5e7e3cda
Contents?: true
Size: 1.3 KB
Versions: 20
Compression:
Stored size: 1.3 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' require 'fluent/process' # to load Fluent::DetachProcessMixin 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 end end end
Version data entries
20 entries across 20 versions & 1 rubygems