Last edited by
MBrown on November 21, 1982 3:43 pm
Hauser, March 7, 1985 2:30:11 pm PST
ConversationTable:
DEFINITIONS =
BEGIN
Conversation: TYPE = AlpineEnvironment.Conversation;
Initialize:
PROC [nSlots:
NAT];
nSlots is an estimate of the number of conversations that will exist simultaneously.
Fetch:
PROC [s: AlpineImport.Handle]
RETURNS [Conversation];
If an established connection with the server s exists, return it. Otherwise
establish a conversation with the server s and return it. If the attempt to
establish the conversation fails due to communications failure, return NIL.
Erase:
PROC [s: AlpineImport.Handle, c: Conversation];
Disassociates conversation c from server s, and terminates the conversation.
I'm not sure why anyone would want to do this.
END.--ConversationTable