Primitive Enumerations:
FromArchiveMsg: PROC [date: GMT, which: ArchiveWhich, ids: IdentificationScheme ← []] RETURNS [fs: FileSet];
EnumArchiveMsg:
PROC [date:
GMT, to: FileConsumer, which: ArchiveWhich, ids: IdentificationScheme ← []];
ArchiveWhich: TYPE = {archive, online};
FromArchivist:
PROC [pattern:
ROPE, created:
GMT ← noGMT, ids: IdentificationScheme ← []]
RETURNS [fs: FileSet];
Pattern must be in [Server]<Directory>... format, not slashy format.
EnumArchivist:
PROC [pattern:
ROPE, to: FileConsumer, created:
GMT ← noGMT, ids: IdentificationScheme ← []];
Pattern must be in [Server]<Directory>... format, not slashy format.
}.