Class: Hazelcast::Client::DefaultMapListener
- Inherits:
-
Object
- Object
- Hazelcast::Client::DefaultMapListener
show all
- Defined in:
- lib/hazelcast/client/map.rb
Instance Method Summary
collapse
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *params) ⇒ Object
40
41
42
|
# File 'lib/hazelcast/client/map.rb', line 40
def method_missing(name, *params)
end
|
Instance Method Details
#entryAdded(event) ⇒ Object
24
25
26
|
# File 'lib/hazelcast/client/map.rb', line 24
def entryAdded(event)
end
|
#entryEvicted(event) ⇒ Object
36
37
38
|
# File 'lib/hazelcast/client/map.rb', line 36
def entryEvicted(event)
end
|
#entryRemoved(event) ⇒ Object
28
29
30
|
# File 'lib/hazelcast/client/map.rb', line 28
def entryRemoved(event)
end
|
#entryUpdated(event) ⇒ Object
32
33
34
|
# File 'lib/hazelcast/client/map.rb', line 32
def entryUpdated(event)
end
|