Sha256: 39c88d9d5a8648f5206b24e49e4331429fb050c8f83a594f860d9607f1ceebd3
Contents?: true
Size: 1.34 KB
Versions: 1
Compression:
Stored size: 1.34 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.module_eval do prepend Fluent::Compat::CallSuperMixin end 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fluentd-0.14.1 | lib/fluent/compat/input.rb |