File: BluejayTool.mesa
This interface provides a single routine to update the Bluejay
viewer to reflect the latest jukebox statistics.
Last edited by: John Ousterhout  July 28, 1982 5:09 pm
Last Edited by: Swinehart, March 1, 1983 3:09 pm
Last Edited by: Stewart, June 21, 1983 3:48 pm
DIRECTORY
IO USING [STREAM];
BluejayTool: DEFINITIONS =
BEGIN
Update the top portion of the Bluejay viewer.
UpdateViewer: PROC;
Enable or disable update of the Bluejay viewer.
EnableViewerUpdates: PROC [enable: BOOLTRUE];
Aquire the output stream for the bottom part of the Bluejay viewer.
GetBluejayLogStream: PROC RETURNS [IO.STREAM];
END.