예제 #1
0
파일: zcertstore.py 프로젝트: minrk/pyczmq
def insert(store, cert):
    """
    Insert certificate into certificate store in memory. Note that this
    does not save the certificate to disk. To do that, use zcert_save()
    directly on the certificate. Takes ownership of zcert_t object.
    """
    return C.zcertstore_insert(store, ptop('zcert_t', cert))
예제 #2
0
파일: zmsg.py 프로젝트: minrk/pyczmq
def send(m, socket):
    """
    Send message to socket, destroy after sending. If the message has no
    frames, sends nothing but destroys the message anyhow. Safe to call
    if zmsg is null.
    """
    return C.zmsg_send(ptop('zmsg_t', m), socket)
예제 #3
0
파일: zmsg.py 프로젝트: fantix/pyczmq
def send(m, socket):
    """
    Send message to socket, destroy after sending. If the message has no
    frames, sends nothing but destroys the message anyhow. Safe to call
    if zmsg is null.
    """
    return C.zmsg_send(ptop('zmsg_t', m), socket)
예제 #4
0
def insert(store, cert):
    """
    Insert certificate into certificate store in memory. Note that this 
    does not save the certificate to disk. To do that, use zcert_save()
    directly on the certificate. Takes ownership of zcert_t object.
    """
    return C.zcertstore_insert(store, ptop('zcert_t', cert))
예제 #5
0
파일: zloop.py 프로젝트: minrk/pyczmq
def destroy(loop):
    """
    Destroy a reactor, this is not necessary if you create it with
    new.
    """
    if loop is not ffi.NULL:
        C.zloop_destroy(ptop('zloop_t', loop))
    return ffi.NULL
예제 #6
0
파일: zmsg.py 프로젝트: fantix/pyczmq
def append(m, f):
    """
    Add frame to the end of the message, i.e. after all other frames.
    Message takes ownership of frame, will destroy it when message is sent.
    Returns 0 on success. Deprecates zmsg_add, which did not nullify the
    caller's frame reference.
    """
    return C.zmsg_append(m, ptop('zframe_t', f))
예제 #7
0
파일: zloop.py 프로젝트: mhaberler/pyczmq
def destroy(loop):
    """
    Destroy a reactor, this is not necessary if you create it with
    new.
    """
    if loop is not ffi.NULL:
        C.zloop_destroy(ptop('zloop_t', loop))
    return ffi.NULL
예제 #8
0
파일: zmsg.py 프로젝트: minrk/pyczmq
def append(m, f):
    """
    Add frame to the end of the message, i.e. after all other frames.
    Message takes ownership of frame, will destroy it when message is sent.
    Returns 0 on success. Deprecates zmsg_add, which did not nullify the
    caller's frame reference.
    """
    return C.zmsg_append(m, ptop('zframe_t', f))
예제 #9
0
파일: zmsg.py 프로젝트: fantix/pyczmq
def destroy(m):
    """Destroy a message object and all frames it contains
    """
    C.zmsg_destroy(ptop('zmsg_t', m))
예제 #10
0
파일: zmsg.py 프로젝트: minrk/pyczmq
def destroy(m):
    """Destroy a message object and all frames it contains
    """
    C.zmsg_destroy(ptop('zmsg_t', m))
예제 #11
0
파일: zframe.py 프로젝트: jasco/pyczmq
def destroy(frame):
    """Destroy a frame
    """
    C.zframe_destroy(ptop("zframe_t", frame))
예제 #12
0
def destroy(cert):
    """Destroy a certificate in memory
    """
    C.zcert_destroy(ptop('zcert_t', cert))
예제 #13
0
파일: zloop.py 프로젝트: hintjens/pyczmq
def destroy(loop):
    """
    Destroy a reactor, this is not necessary if you create it with
    new.
    """
    return C.zloop_destroy(ptop('zloop_t', loop))
예제 #14
0
def destroy(beacon):
    """Destroy a beacon
    """
    C.zbeacon_destroy(ptop('zbeacon_t', beacon))
예제 #15
0
def destroy(frame):
    """Destroy a frame
    """
    C.zframe_destroy(ptop('zframe_t', frame))
예제 #16
0
파일: zctx.py 프로젝트: marquisrobb/pyczmq
def destroy(ctx):
    """
    Destroy context and all sockets in it
    """
    #if ctx is not ffi.NULL:
    C.zctx_destroy(ptop('zctx_t', ctx))
예제 #17
0
def destroy(sock):
    """Destroy a sock."""
    C.zsock_destroy(ptop('zsock_t', sock))
예제 #18
0
def destroy(store):
    """
    Destroy a certificate store object in memory. Does not affect anything
    stored on disk.
    """
    C.zcertstore_destroy(ptop('zcertstore_t', store))
예제 #19
0
def destroy(auth):
    """ Destructor """
    C.zauth_destroy(ptop('zauth_t', auth))
예제 #20
0
def send(frame, socket, flags):
    """
    Send a frame to a socket, destroy frame after sending.
    Return -1 on error, 0 on success.
    """
    return C.zframe_send(ptop('zframe_t', frame), socket, flags)
예제 #21
0
파일: zcertstore.py 프로젝트: minrk/pyczmq
def destroy(store):
    """
    Destroy a certificate store object in memory. Does not affect anything
    stored on disk.
    """
    C.zcertstore_destroy(ptop('zcertstore_t', store))
예제 #22
0
파일: zframe.py 프로젝트: jasco/pyczmq
def send(frame, socket, flags):
    """
    Send a frame to a socket, destroy frame after sending.
    Return -1 on error, 0 on success.
    """
    return C.zframe_send(ptop("zframe_t", frame), socket, flags)
예제 #23
0
파일: zctx.py 프로젝트: aburan28/pyczmq
def destroy(ctx):
    """
    Destroy context and all sockets in it
    """
    #if ctx is not ffi.NULL:
    C.zctx_destroy(ptop('zctx_t', ctx))
예제 #24
0
파일: zpoller.py 프로젝트: hintjens/pyczmq
def destroy(poller):
    """Destroy a poller"""
    C.zpoller_destroy(ptop("zpoller_t", poller))
예제 #25
0
파일: zframe.py 프로젝트: hintjens/pyczmq
def destroy(frame):
    """Destroy a frame
    """
    return C.zframe_destroy(ptop('zframe_t', frame))
예제 #26
0
파일: zauth.py 프로젝트: aburan28/pyczmq
def destroy(auth):
    """ Destructor """
    C.zauth_destroy(ptop('zauth_t', auth))
예제 #27
0
def send(sock, msg):
    """Send a zmsg message to the socket, take ownership of the message
    and destroy when it has been sent.
    """
    return C.zsock_send(sock, ptop('zmsg_t', msg))
예제 #28
0
파일: zctx.py 프로젝트: hintjens/pyczmq
def destroy(ctx):
    """
    Destroy context and all sockets in it
    """
    return C.zctx_destroy(ptop('zctx_t', ctx))
예제 #29
0
def destroy(actor):
    """Destroy an actor."""
    C.zactor_destroy(ptop('zactor_t', actor))
예제 #30
0
파일: zpoller.py 프로젝트: minrk/pyczmq
def destroy(poller):
    """Destroy a poller"""
    C.zpoller_destroy(ptop('zpoller_t', poller))