Module: CZTop::PolymorphicZsockMethods
Overview
Instance Method Summary collapse
-
#set_unbounded ⇒ Object
Set socket to use unbounded pipes (HWM=0); use this in cases when you are totally certain the message volume can fit in memory.
-
#signal(status = 0) ⇒ Object
Sends a signal.
-
#wait ⇒ Integer
Waits for a signal.
Instance Method Details
#set_unbounded ⇒ Object
Set socket to use unbounded pipes (HWM=0); use this in cases when you are totally certain the message volume can fit in memory.
20 21 22 |
# File 'lib/cztop/polymorphic_zsock_methods.rb', line 20 def set_unbounded ::CZMQ::FFI::Zsock.set_unbounded(ffi_delegate) end |
#signal(status = 0) ⇒ Object
Sends a signal.
8 9 10 |
# File 'lib/cztop/polymorphic_zsock_methods.rb', line 8 def signal(status = 0) ::CZMQ::FFI::Zsock.signal(ffi_delegate, status) end |
#wait ⇒ Integer
Waits for a signal.
14 15 16 |
# File 'lib/cztop/polymorphic_zsock_methods.rb', line 14 def wait ::CZMQ::FFI::Zsock.wait(ffi_delegate) end |