Iterative Server
Iterative Server
- Sun RPC specifies that at most one remote procedure within a program can be invoked at any given time.
- If a 2nd procedure is called the caller blocks until the 1st procedure has completed.
- This is useful for applications that may share data among procedures.
- Example: database - to avoid insert/delete/modify collisions.