Author:halw

Date:2011-03-01T22:52:38.000000Z


git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@794 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
halw
2011-03-01 23:00:08 +00:00
parent e411dad72c
commit 482fe52fc4
2 changed files with 19 additions and 2 deletions

View File

@@ -195,12 +195,12 @@ After an asynchronous feature call, the execution of the client proceeds immedia
First, every feature call is either a synchronous feature call or an asynchronous feature call. For a particular call, the following rules determine which it is:
A feature call is synchronous in the following cases:
A feature call is '''synchronous''' in the following cases:
# It is a non-separate call.
# It is a separate call to a query.
# It is a feature call which has at least one actual argument which is a separate argument of the enclosing routine.
A feature call is asynchronous in the following case:
A feature call is '''asynchronous''' in the following case:
# It is a separate call to a command.
Lets look a little closer at those cases determining synchronous calls.