blob: 4a81791d0582273cf9477105db470008e8570235 [file] [log] [blame]
---
layout: default
---
:source-highlighter: coderay
:icons: font
include::_banner.adoc[]
== Messaging Patterns
http://nanomsg.org[Nanomsg] is a messaging framework that attempts to
help solve common messaging problems with one of a few patterns ('protocols'
in nanomsg parlance.)
Following are examples of each pattern type in C.
* <<pipeline#,Pipeline (A One-Way Pipe)>>
* <<reqrep#,Request/Reply (I ask, you answer)>>
* <<pair#,Pair (Two Way Radio)>>
* <<pubsub#,Pub/Sub (Topics & Broadcast)>>
* <<survey#,Survey (Everybody Votes)>>
* <<bus#,Bus (Routing)>>