blob: d31f624fbfa5ad2f1b9bb268e9f6849d9f237d89 [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)>>