forked from jeapostrophe/zeromq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathzmq.scrbl
25 lines (18 loc) · 956 Bytes
/
zmq.scrbl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#lang scribble/doc
@(require scribble/manual
scribble/basic
scribble/extract
planet/scribble
(for-label (except-in ffi/unsafe ->)
racket
(file "main.rkt")))
@title[#:tag "top"]{ZeroMQ}
@author[(author+email "Jay McCarthy" "[email protected]")]
(defmodule/this-package main)
This package provides a binding for the @link["http://www.zeromq.org/"]{ZeroMQ} library.
This documentation does not describe meaning of API calls; it only describes their Racket calling conventions. For details on API semantics, refer to the documentation at the @link["http://api.zeromq.org/zmq.html"]{ZeroMQ site}.
@litchar{zmq_msg_init_data} is not supported, because Racket pointers may be moved by the garbage collector before the ZeroMQ library is done with them.
@local-table-of-contents[]
@section[#:tag "api"]{API}
@defmodule/this-package[zmq]
@include-extracted[(file "zmq.rkt")]