sclass ComputerCountListener(StefansOS_ConnectToServer connector) { new VarWithNotify computerCount; void init { connector.onLine = voidfunc(S line) { new Matches m; if (swic(line, "ComputerIDs = ", m)) { var computerIDs = (LS) safeUnstruct($1); computerCount.set(l(computerIDs)); } } } LiveValue lvComputerCount() { ret varWithNotifyToLiveValue(computerCount); } }