Class: Hypertube::Sdk::Internal::AbstractInvocationContext
- Inherits:
-
Object
- Object
- Hypertube::Sdk::Internal::AbstractInvocationContext
show all
- Defined in:
- lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb
Instance Method Summary
collapse
Instance Method Details
#create_instance(*args) ⇒ Object
31
32
33
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 31
def create_instance(*args)
raise NotImplementedError, 'method not implemented'
end
|
#execute ⇒ Object
7
8
9
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 7
def execute
raise NotImplementedError, 'method not implemented'
end
|
#get_enum_item ⇒ Object
59
60
61
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 59
def get_enum_item
raise NotImplementedError, 'method not implemented'
end
|
#get_enum_value ⇒ Object
63
64
65
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 63
def get_enum_value
raise NotImplementedError, 'method not implemented'
end
|
#get_index(*args) ⇒ Object
35
36
37
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 35
def get_index(*args)
raise NotImplementedError, 'method not implemented'
end
|
#get_instance_field(field_name) ⇒ Object
23
24
25
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 23
def get_instance_field(field_name)
raise NotImplementedError, 'method not implemented'
end
|
#get_rank ⇒ Object
47
48
49
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 47
def get_rank
raise NotImplementedError, 'method not implemented'
end
|
#get_ref_value ⇒ Object
67
68
69
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 67
def get_ref_value
raise NotImplementedError, 'method not implemented'
end
|
#get_size ⇒ Object
43
44
45
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 43
def get_size
raise NotImplementedError, 'method not implemented'
end
|
#get_static_field(field_name) ⇒ Object
15
16
17
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 15
def get_static_field(field_name)
raise NotImplementedError, 'method not implemented'
end
|
#invoke_generic_method(method_name, *args) ⇒ Object
55
56
57
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 55
def invoke_generic_method(method_name, *args)
raise NotImplementedError, 'method not implemented'
end
|
#invoke_generic_static_method(method_name, *args) ⇒ Object
51
52
53
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 51
def invoke_generic_static_method(method_name, *args)
raise NotImplementedError, 'method not implemented'
end
|
#invoke_instance_method(method_name, *args) ⇒ Object
19
20
21
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 19
def invoke_instance_method(method_name, *args)
raise NotImplementedError, 'method not implemented'
end
|
#invoke_static_method(method_name, *args) ⇒ Object
11
12
13
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 11
def invoke_static_method(method_name, *args)
raise NotImplementedError, 'method not implemented'
end
|
#retrieve_array ⇒ Object
71
72
73
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 71
def retrieve_array
raise NotImplementedError, 'method not implemented'
end
|
#set_index(*args) ⇒ Object
39
40
41
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 39
def set_index(*args)
raise NotImplementedError, 'method not implemented'
end
|
#set_instance_field(field_name, value) ⇒ Object
27
28
29
|
# File 'lib/hypertube-ruby-sdk/sdk/internal/abstract_invocation_context.rb', line 27
def set_instance_field(field_name, value)
raise NotImplementedError, 'method not implemented'
end
|