Skip to content

mzy2240/zmipc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zmipc

MIT License PyPi Version

Description

A Zero-copy Memory-sharing based IPC which intends to be handy in some cases where socket-based communications do not work well.

Getting Started

The usage of zmipc intends to be straight-forward. Here is an example:

from zmipc import ZMClient

sender = ZMClient()
receiver = ZMClient()
sender.add_publication(topic='test')
receiver.add_subscription(topic'test')
sender.publish(topic='test', msg='Hello World!')
print(receiver.receive(topic='test'))

About

A Zero-copy Memory-sharing IPC

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages