What is servers in concurrent object implementation?
Answers
Answered by
0
Answer:
Concurrent Server: The server can be iterative, i.e. it iterates through each client and serves one request at a time. Alternatively, a server can handle multiple clients at the same time in parallel, and this type of a server is called a concurrent server.
Explanation:
Computer science defines concurrency as a property of systems where several processes are executing at the same time, and may or may not interact with each other. ... This means that concurrent activities must be given time slices such that it seems that they are running in parallell.
Similar questions