Files
PolyORB/Examples/Callbacks/local.ads
Laurent Pautet b2bf6d3876 Some kind of distributed scheduler based on remote callbacks using
asynchronous RPC, RAS and RACW.

Subversion-branch: /importfromcvs/trunk
Subversion-revision: 46751
1998-04-15 16:46:04 +00:00

18 lines
321 B
Ada

with Common; use Common;
with Types; use Types;
package Local is
pragma Remote_Types;
type New_Worker is new Worker with private;
procedure Work
(W : access New_Worker;
Q : Query;
C : Callback);
procedure Initialize;
private
type New_Worker is new Worker with null record;
end Local;