Update wikipage Graphics with concurrency. (Signed-off-by:jocelyn).

git-svn-id: https://svn.eiffel.com/eiffel-org/trunk@1439 abb3cda0-5349-4a8f-a601-0c33ac3a8c38
This commit is contained in:
eiffel-org
2015-09-28 11:49:03 +00:00
parent 2df3763fa1
commit 99f2ac2dc2

View File

@@ -1,4 +1,4 @@
[[Property:uuid|C881D4E8-4C3C-4AEB-8005-8315E743EC26]] [[Property:uuid|41367400-CA34-4121-853B-035B8C15FE53]]
[[Property:weight|0]] [[Property:weight|0]]
[[Property:title|Graphics with concurrency]] [[Property:title|Graphics with concurrency]]
How can I build a concurrent graphical in application in Eiffel? How can I build a concurrent graphical in application in Eiffel?
@@ -31,8 +31,8 @@ This is all the make procedure should do. Make sure it terminates with the prece
Now you can start using EiffelVision as you are used to, by sending GUI requests to the EV_APPLICATION object: Now you can start using EiffelVision as you are used to, by sending GUI requests to the EV_APPLICATION object:
o For requests coming from the same processor as s, just use the EV_APPLICATION object directly. * For requests coming from the same processor as s, just use the EV_APPLICATION object directly.
o For requests coming from another processor, you need access to that object; you can get it for example by through the feature ev_separate_application of class EV_SHARED_APPLICATION}. * For requests coming from another processor, you need access to that object; you can get it for example by through the feature ev_separate_application of class EV_SHARED_APPLICATION}.
That's all! Happy concurrent Eiffeling. That's all! Happy concurrent Eiffeling.