Computer Science, asked by Faizanmfk8043, 1 year ago

Describe architecture model of distributed system design

Answers

Answered by chirag477
0
The client-server model is usually based on a simple request/reply protocol, implemented with send/receive primitives or using remote procedure calls (RPC) or remote method invocation (RMI):

The client sends a request (invocation) message to the server asking for some service;

The server does the work and returns a result (e.g. the data requested) or an error code if the work could not be performed.

Similar questions