Ferreteria/v0.6/clade/Sys/Events/ItWent/CommOp

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | Sys‎ | Events‎ | ItWent
Jump to navigation Jump to search
clade: Sys\Events\ItWent\CommOp
Clade Family
ItWent CommOp MsgsOp
Clade Aliases
Alias Clade
Base* [c,i] ItWent
QStr* [c,i] Str

About

  • purpose: an ItWent for communication operations

Code

as of 2025-10-01

interface iCommOp extends BaseIface {
    function QResponseStd() : QStrIface;
    function QResponseErr() : QStrIface;
}
class cCommOp extends BaseClass implements iCommOp {
    private $osStd=NULL; public function QResponseStd() : QStrIface { return $this->osStd ?? ($this->osStd = new QStrClass); }
    private $osErr=NULL; public function QResponseErr() : QStrIface { return $this->osErr ?? ($this->osErr = new QStrClass); }
}