interprocess C# python real time -


i'm working on project i'll have 1 application in c# , 1 in python. c# application continuously analyse stream of data , raise flag each time interesting detected. each time there event, python application have read , continues own process, while other flags continue being sent. understand c# app won't wait python 1 finish computation before sending flag.

so wondering if possible create sub/pub (c# being publisher, , python subscriber), if yes how can it, , think it's idea? i'm pretty new in field, tell me if there other possibilities?

thx help.

simplest way pipe communication. simple way not suggested socket programming. pipes , named pipes solution communicate between different processes (over different programming languages). socket programming may need more access level , may less security.

other type of ipcs seems unusable.

see more info:


Comments

Popular posts from this blog

javascript - backbone.js Collection.add() doesn't `construct` (`initialize`) an object -

php - Get uncommon values from two or more arrays -

Adding duplicate array rows in Php -