Sha256: 8ef08093adae521de0d4507ee32b19203a63fb940954aac96a5f448b54956d8c

Contents?: true

Size: 1.4 KB

Versions: 166

Compression:

Stored size: 1.4 KB

Contents

# Copyright (C) 2013  Ruby-GNOME2 Project Team
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA

module Clutter
  module Threads
    class << self
      alias_method :add_timeout_full, :add_timeout
      def add_timeout(interval_or_priority, interval=nil, &block)
        if interval.nil?
          priority, interval = GLib::PRIORITY_DEFAULT, interval_or_priority
          add_timeout_full(priority, interval, &block)
        else
          priority = interval_or_priority
          add_timeout_full(priority, interval, &block)
        end
      end

      alias_method :add_idle_full, :add_idle
      def add_idle(priority=nil, &block)
        priority ||= GLib::PRIORITY_DEFAULT_IDLE
        add_idle_full(priority, &block)
      end
    end
  end
end

Version data entries

166 entries across 166 versions & 1 rubygems

Version Path
clutter-3.3.6 lib/clutter/threads.rb
clutter-3.3.5 lib/clutter/threads.rb
clutter-3.3.4 lib/clutter/threads.rb
clutter-3.3.3 lib/clutter/threads.rb
clutter-3.3.2 lib/clutter/threads.rb
clutter-3.3.1 lib/clutter/threads.rb
clutter-3.3.0 lib/clutter/threads.rb
clutter-3.2.9-x64-mingw32 lib/clutter/threads.rb
clutter-3.2.9-x86-mingw32 lib/clutter/threads.rb
clutter-3.2.9 lib/clutter/threads.rb
clutter-3.2.8-x64-mingw32 lib/clutter/threads.rb
clutter-3.2.8-x86-mingw32 lib/clutter/threads.rb
clutter-3.2.8 lib/clutter/threads.rb
clutter-3.2.7-x86-mingw32 lib/clutter/threads.rb
clutter-3.2.7-x64-mingw32 lib/clutter/threads.rb
clutter-3.2.7 lib/clutter/threads.rb
clutter-3.2.6-x64-mingw32 lib/clutter/threads.rb
clutter-3.2.6-x86-mingw32 lib/clutter/threads.rb
clutter-3.2.6 lib/clutter/threads.rb
clutter-3.2.5-x64-mingw32 lib/clutter/threads.rb