Class: ConvenientService::Service::Plugins::CanHaveSteps::Entities::Method::Entities::Directions::Base

Inherits:
Object
  • Object
show all
Includes:
ConvenientService::Support::AbstractMethod, ConvenientService::Support::Copyable
Defined in:
lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb

Direct Known Subclasses

Input, Output

Instance Method Summary collapse

Methods included from ConvenientService::Support::Copyable

#copy

Methods included from ConvenientService::Support::AbstractMethod

abstract_method

Instance Method Details

#==(other) ⇒ Boolean?

Parameters:

  • other (Object)

    Can be any type.

Returns:

  • (Boolean, nil)


24
25
26
27
28
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb', line 24

def ==(other)
  return unless other.instance_of?(self.class)

  true
end

#define_output_in_container!Boolean

Returns:

  • (Boolean)


18
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb', line 18

abstract_method :define_output_in_container!

#to_argumentsConvenientService::Support::Arguments



33
34
35
# File 'lib/convenient_service/service/plugins/can_have_steps/entities/method/entities/directions/base.rb', line 33

def to_arguments
  Support::Arguments.new
end