class CZTop::Socket::PULL

Pull socket for the ZeroMQ Pipeline Pattern. @see rfc.zeromq.org/spec:30

Public Class Methods

new(endpoints = nil) click to toggle source

@param endpoints [String] endpoints to bind to

Calls superclass method CZTop::Socket::new
# File lib/cztop/socket/types.rb, line 258
def initialize(endpoints = nil)
  super

  attach_ffi_delegate(Zsock.new_pull(endpoints))
end