INTERFACERemoteView ; IMPORT NetObj, Thread; EXCEPTION Error(TEXT); TYPE T = NetObj.T BRANDED "RemoteView 2.0" OBJECT METHODS startrun() RAISES {NetObj.Error, Thread.Alerted}; endrun() RAISES {NetObj.Error, Thread.Alerted}; event(tfactor: REAL; nm, args: TEXT) RAISES {Error, NetObj.Error, Thread.Alerted} END; END RemoteView.