Class: CZMQ::FFI::Ztimerset
- Inherits:
-
Object
- Object
- CZMQ::FFI::Ztimerset
- Defined in:
- lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb
Overview
This class is 100% generated using zproject.
timer set
Defined Under Namespace
Classes: DestroyedError
Class Method Summary collapse
- .__new ⇒ Object
- .create_finalizer_for(ptr) ⇒ Proc
-
.fn ⇒ Object
Create a new callback of the following type: Callback function for timer event.
-
.new ⇒ CZMQ::Ztimerset
Create new timer set.
-
.test(verbose) ⇒ void
Self test of this class.
Instance Method Summary collapse
-
#__ptr ⇒ ::FFI::Pointer
(also: #to_ptr)
Return internal pointer.
-
#__ptr_give_ref ⇒ ::FFI::MemoryPointer
Nullify internal pointer and return pointer pointer.
-
#__undef_finalizer ⇒ void
Undefines the finalizer for this object.
-
#add(interval, handler, arg) ⇒ Integer
Add a timer to the set.
-
#cancel(timer_id) ⇒ Integer
Cancel a timer.
-
#destroy ⇒ void
Destroy a timer set.
-
#execute ⇒ Integer
Invoke callback function of all timers which their interval has elapsed.
-
#initialize(ptr, finalize = true) ⇒ Ztimerset
constructor
Attaches the pointer ptr to this instance and defines a finalizer for it if necessary.
- #null? ⇒ Boolean
-
#reset(timer_id) ⇒ Integer
Reset timer to start interval counting from current time.
-
#set_interval(timer_id, interval) ⇒ Integer
Set timer interval.
-
#timeout ⇒ Integer
Return the time until the next interval.
Constructor Details
#initialize(ptr, finalize = true) ⇒ Ztimerset
Attaches the pointer ptr to this instance and defines a finalizer for it if necessary.
24 25 26 27 28 29 30 31 32 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 24 def initialize(ptr, finalize = true) @ptr = ptr if @ptr.null? @ptr = nil # Remove null pointers so we don't have to test for them. elsif finalize @finalizer = self.class.create_finalizer_for @ptr ObjectSpace.define_finalizer self, @finalizer end end |
Class Method Details
.__new ⇒ Object
18 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 18 alias :__new :new |
.create_finalizer_for(ptr) ⇒ Proc
35 36 37 38 39 40 41 42 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 35 def self.create_finalizer_for(ptr) ptr_ptr = ::FFI::MemoryPointer.new :pointer Proc.new do ptr_ptr.write_pointer ptr ::CZMQ::FFI.ztimerset_destroy ptr_ptr end end |
.fn ⇒ Object
WARNING: If your Ruby code doesn’t retain a reference to the FFI::Function object after passing it to a C function call, it may be garbage collected while C still holds the pointer, potentially resulting in a segmentation fault.
Create a new callback of the following type: Callback function for timer event.
typedef void (ztimerset_fn) (
int timer_id, void *arg);
86 87 88 89 90 91 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 86 def self.fn ::FFI::Function.new :void, [:int, :pointer], blocking: true do |timer_id, arg| result = yield timer_id, arg result end end |
Instance Method Details
#__ptr ⇒ ::FFI::Pointer Also known as: to_ptr
Return internal pointer
49 50 51 52 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 49 def __ptr raise DestroyedError unless @ptr @ptr end |
#__ptr_give_ref ⇒ ::FFI::MemoryPointer
This detaches the current instance from the native object and thus makes it unusable.
Nullify internal pointer and return pointer pointer.
60 61 62 63 64 65 66 67 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 60 def __ptr_give_ref raise DestroyedError unless @ptr ptr_ptr = ::FFI::MemoryPointer.new :pointer ptr_ptr.write_pointer @ptr __undef_finalizer if @finalizer @ptr = nil ptr_ptr end |
#__undef_finalizer ⇒ void
Only use this if you need to and can guarantee that the native object will be freed by other means.
This method returns an undefined value.
Undefines the finalizer for this object.
72 73 74 75 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 72 def __undef_finalizer ObjectSpace.undefine_finalizer self @finalizer = nil end |
#add(interval, handler, arg) ⇒ Integer
Add a timer to the set. Returns timer id if OK, -1 on failure.
116 117 118 119 120 121 122 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 116 def add(interval, handler, arg) raise DestroyedError unless @ptr self_p = @ptr interval = Integer(interval) result = ::CZMQ::FFI.ztimerset_add(self_p, interval, handler, arg) result end |
#cancel(timer_id) ⇒ Integer
Cancel a timer. Returns 0 if OK, -1 on failure.
128 129 130 131 132 133 134 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 128 def cancel(timer_id) raise DestroyedError unless @ptr self_p = @ptr timer_id = Integer(timer_id) result = ::CZMQ::FFI.ztimerset_cancel(self_p, timer_id) result end |
#destroy ⇒ void
This method returns an undefined value.
Destroy a timer set
103 104 105 106 107 108 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 103 def destroy() return unless @ptr self_p = __ptr_give_ref result = ::CZMQ::FFI.ztimerset_destroy(self_p) result end |
#execute ⇒ Integer
Invoke callback function of all timers which their interval has elapsed. Should be call after zpoller wait method. Returns 0 if OK, -1 on failure.
181 182 183 184 185 186 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 181 def execute() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.ztimerset_execute(self_p) result end |
#null? ⇒ Boolean
44 45 46 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 44 def null? !@ptr or @ptr.null? end |
#reset(timer_id) ⇒ Integer
Reset timer to start interval counting from current time. Returns 0 if OK, -1 on failure. This method is slow, canceling the timer and adding a new one yield better performance.
156 157 158 159 160 161 162 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 156 def reset(timer_id) raise DestroyedError unless @ptr self_p = @ptr timer_id = Integer(timer_id) result = ::CZMQ::FFI.ztimerset_reset(self_p, timer_id) result end |
#set_interval(timer_id, interval) ⇒ Integer
Set timer interval. Returns 0 if OK, -1 on failure. This method is slow, canceling the timer and adding a new one yield better performance.
142 143 144 145 146 147 148 149 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 142 def set_interval(timer_id, interval) raise DestroyedError unless @ptr self_p = @ptr timer_id = Integer(timer_id) interval = Integer(interval) result = ::CZMQ::FFI.ztimerset_set_interval(self_p, timer_id, interval) result end |
#timeout ⇒ Integer
Return the time until the next interval. Should be used as timeout parameter for the zpoller wait method. The timeout is in msec.
169 170 171 172 173 174 |
# File 'lib/czmq-ffi-gen/czmq/ffi/ztimerset.rb', line 169 def timeout() raise DestroyedError unless @ptr self_p = @ptr result = ::CZMQ::FFI.ztimerset_timeout(self_p) result end |