java - Corba Async call issue -


i have following requirements:

implement simple pipelined job service (further pjs). client writes simple application form , put pjs. pjs consists of several individual processes handles application in sequential order:

  • verifier responsible verification of application form format. might simple handling mechanism i.e. check matching user individual identity number (id) in database (you can use simple text file).
  • acknowledger receives verified application form , assigns unique identificator (autoincrement id or uuid).
  • hr receives application form acknowledger assigned unique number, put database , generate notification original sender (client) message receives application form. response have piggybacked unique number assigned acknowledger.

there should no intermediaries involved in process of forwarding job between servers: i.e. each server should pass application directly next server. stay focus on system architecture , process of passing applications around. don’t implement complex data structures represent application. can simple tiny json message.

how implement task? don't know how return response hr part client directly, because client starts calling verifier.

i've understood problem , solved myself, posting github link: pjs


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -