DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - downloadIndex: ┃ T V ┃
Length: 2162 (0x872) Types: TextFile Names: »V«
└─⟦149519bd4⟧ Bits:30000546 8mm tape, Rational 1000, !projects 93-07-13 └─ ⟦124ff5788⟧ »DATA« └─⟦this⟧ └─⟦f64eaa120⟧ Bits:30000752 8mm tape, Rational 1000, !projects 93 02 16 └─ ⟦6f12a12be⟧ »DATA« └─⟦this⟧
WITH Rpc; WITH Transport_Defs; WITH Transport_Stream; PACKAGE Rpc_Client IS GENERIC Default_Network : Transport_Defs.Network_Name; Default_Host : Transport_Defs.Host_Id; Default_Socket : Transport_Defs.Socket_Id; Default_Program : Rpc.Program_Number; Default_Version : Rpc.Version_Number; PROCEDURE Start_Request_Generic (Stream : OUT Transport_Stream.Stream_Id; Proc : Rpc.Procedure_Number; Network : Transport_Defs.Network_Name := Default_Network; Host : Transport_Defs.Host_Id := Default_Host; Socket : Transport_Defs.Socket_Id := Default_Socket; Program : Rpc.Program_Number := Default_Program; Version : Rpc.Version_Number := Default_Version); -- Allocate a stream from the pool. Transmit a call message -- header with the given program, version, and proc values. -- The following procedure is defunct: it is here for -- backward-compatibility. Use the previous procedure. GENERIC Pool : IN OUT Transport_Stream.Pool_Id; Program : Rpc.Program_Number; Version : Rpc.Version_Number; PROCEDURE Begin_Request_Generic (Stream : OUT Transport_Stream.Stream_Id; Proc : Rpc.Procedure_Number); -- Allocate a stream from the pool. Transmit a call message -- header with the given program, version, and proc values. PROCEDURE End_Request (Stream : Transport_Stream.Stream_Id); -- Flush the transmit buffer. Get the response header. -- If it is not OK, deallocate the stream. PROCEDURE End_Response (Stream : Transport_Stream.Stream_Id); -- Deallocate the stream. GENERIC WITH PROCEDURE Raise_Exception (Excep : Rpc.Exception_Number); PROCEDURE End_Request_With_Exception (Stream : Transport_Stream.Stream_Id); -- Like End_Request (above), except that it also checks -- for a server-defined exception, and, if there is one, -- raises it (using the Raise_Exception procedure). END Rpc_Client;