Sha256: 3f52db05ef5abe6346901134b1c550fd897f2022162c4797451f8a99a157c901

Contents?: true

Size: 863 Bytes

Versions: 12

Compression:

Stored size: 863 Bytes

Contents

# Author::    Eric Crane  (mailto:eric.crane@mac.com)
# Copyright:: Copyright (c) 2019 Eric Crane.  All rights reserved.
#
# An Untyped Object.
#

module Gloo
  module Objs
    class Untyped < Gloo::Core::Obj

      KEYWORD = 'untyped'.freeze
      KEYWORD_SHORT = 'any'.freeze

      #
      # The name of the object type.
      #
      def self.typename
        return KEYWORD
      end

      #
      # The short name of the object type.
      #
      def self.short_typename
        return KEYWORD_SHORT
      end

      # ---------------------------------------------------------------------
      #    Messages
      # ---------------------------------------------------------------------

      #
      # Get a list of message names that this object receives.
      #
      def self.messages
        return super # + [ "run" ]
      end

    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
gloo-3.8.0 lib/gloo/objs/basic/untyped.rb
gloo-3.7.0 lib/gloo/objs/basic/untyped.rb
gloo-3.6.2 lib/gloo/objs/basic/untyped.rb
gloo-3.6.1 lib/gloo/objs/basic/untyped.rb
gloo-3.6.0 lib/gloo/objs/basic/untyped.rb
gloo-3.5.0 lib/gloo/objs/basic/untyped.rb
gloo-3.4.1 lib/gloo/objs/basic/untyped.rb
gloo-3.4.0 lib/gloo/objs/basic/untyped.rb
gloo-3.3.0 lib/gloo/objs/basic/untyped.rb
gloo-3.2.0 lib/gloo/objs/basic/untyped.rb
gloo-3.1.1 lib/gloo/objs/basic/untyped.rb
gloo-3.1.0 lib/gloo/objs/basic/untyped.rb