-
Notifications
You must be signed in to change notification settings - Fork 57
/
zmq4.go
53 lines (41 loc) · 1.47 KB
/
zmq4.go
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// Copyright 2018 The go-zeromq Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package zmq4 implements the ØMQ sockets and protocol for ZeroMQ-4.
//
// For more informations, see http://zeromq.org.
package zmq4
import "net"
// Socket represents a ZeroMQ socket.
type Socket interface {
// Close closes the open Socket.
Close() error
// Send puts the message on the outbound send queue.
//
// Send blocks until the message can be queued or the send deadline expires.
Send(msg Msg) error
// SendMulti puts the message on the outbound send queue.
//
// SendMulti blocks until the message can be queued or the send deadline
// expires. The message will be sent as a multipart message.
SendMulti(msg Msg) error
// Recv receives a complete message.
Recv() (Msg, error)
// Listen connects a local endpoint to the Socket.
//
// In ZeroMQ's terminology, it binds.
Listen(ep string) error
// Dial connects a remote endpoint to the Socket.
//
// In ZeroMQ's terminology, it connects.
Dial(ep string) error
// Type returns the type of this Socket (for example PUB, SUB, etc.)
Type() SocketType
// Addr returns the listener's address. It returns nil if the socket isn't a
// listener.
Addr() net.Addr
// GetOption retrieves an option for a socket.
GetOption(name string) (interface{}, error)
// SetOption sets an option for a socket.
SetOption(name string, value interface{}) error
}