REQUEST RESPONSE

Model of interaction where one of the nodes plays the role of the server listening and accepting communications by client machines that makes requests, in this model only client can start a communication

flowchart LR
A(client)
B(server)
A --request--> B
B --response--> A

possible interaction with this model can be:

  • pull actuators request configurations from the server
  • push sensors send data to the server

PREVIOUS NEXT