-- Copyright (C) 1987 by Xerox Corporation. All rights reserved.
-- Stub file was translated on March 26, 1987 5:10:58 pm PST by Lupine of January 22, 1987 5:37:32 pm PST
-- Source interface OldAlpineOwner came from file OldAlpineOwner.bcd, which was created on March 26, 1987 5:10:45 pm PST with version stamp 21#273#3457447015 from source of January 6, 1987 2:15:52 pm PST.
-- The RPC stub modules for OldAlpineOwner are:
-- OldAlpineOwnerRpcControl.mesa;
-- OldAlpineOwnerRpcClientImpl.mesa;
-- OldAlpineOwnerRpcBinderImpl.mesa;
-- OldAlpineOwnerRpcServerImpl.mesa.
-- The parameters for this translation are:
-- Target language = Cedar
-- Default parameter passing = VALUE
-- Deallocate server heap arguments = TRUE
-- Inline RpcServerImpl dispatcher stubs = TRUE
-- Declare signals = TRUE
-- Warn about short POINTER ("MDS") allocations = TRUE
-- Maximum number of dynamic heap NEWs = 50, MDS NEWs = 50
-- Acceptable parameter protocols = VersionRange[1..1].
-- NOTE: Discard this module unless you use dynamic client binding.
DIRECTORY
OldAlpineOwner,
OldAlpineOwnerRpcControl USING [ImportInterface, InterfaceRecord,
InterfaceRecordObject],
RPC USING [InterfaceName, Zones],
RPCLupine --USING SOME OF [ImportInterfaceWithHost, noHost, RPCHost]--;
OldAlpineOwnerRpcBinderImpl: MONITOR
IMPORTS RpcControl: OldAlpineOwnerRpcControl, RpcPrivate: RPCLupine
EXPORTS OldAlpineOwnerRpcControl
SHARES OldAlpineOwner, OldAlpineOwnerRpcControl
= BEGIN OPEN RpcPublic: RPC;
-- Dynamic instantiation and binding routines.
ImportNewInterface: PUBLIC SAFE PROCEDURE [
interfaceName: RpcPublic.InterfaceName,
parameterStorage: RpcPublic.Zones,
hostHint: RpcPrivate.RPCHost←RpcPrivate.noHost ]
RETURNS [interfaceRecord: RpcControl.InterfaceRecord] =
TRUSTED BEGIN
interfaceRecord ← NewInterfaceRecord[];
RpcControl.ImportInterface[
interface: interfaceRecord,
interfaceName: interfaceName,
hostHint: hostHint,
parameterStorage: parameterStorage];
END;
-- Utility routines for interface instantiation and caching.
NewInterfaceRecord: PUBLIC SAFE PROCEDURE
RETURNS [interfaceRecord: RpcControl.InterfaceRecord] =
TRUSTED BEGIN
interfaceRecord ← NEW[RpcControl.InterfaceRecordObject];
END;
-- No module initialization.
END. -- OldAlpineOwnerRpcBinderImpl.