Ferreteria/v0.6/clade/Sys/Events/ItWent/CommOp: Difference between revisions

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | Sys‎ | Events‎ | ItWent
Jump to navigation Jump to search
(Created page with "{{page/clade}} {| style="border: solid 1px black; float: right;" ! colspan=3 | Clade Family |- | align=right | {{l/ver/clade|Sys\Events|ItWent}} | → {{l/ver/clade|Sys\Events\ItWent|CommOp}} |} ==About== * '''purpose''': an {{l/ver/clade|Sys\Events|ItWent}} for communication operations")
 
No edit summary
 
Line 5: Line 5:
| align=right | {{l/ver/clade|Sys\Events|ItWent}}
| align=right | {{l/ver/clade|Sys\Events|ItWent}}
| &rarr; {{l/ver/clade|Sys\Events\ItWent|CommOp}}
| &rarr; {{l/ver/clade|Sys\Events\ItWent|CommOp}}
| &rarr; {{l/ver/clade|Sys\Events\ItWent\CommOp|MsgsOp}}
|-
| colspan=3 align=center |
{| class="wikitable"
|-
! colspan=2 | Clade Aliases
|-
! Alias || Clade
|-
| '''Base'''* [c,i] || {{l/ver/clade|Sys\Events|ItWent}}
|-
| '''QStr'''* [c,i] || {{l/ver/clade|Data\Mem\QVar|Str}}
|}
|}
|}
==About==
==About==
* '''purpose''': an {{l/ver/clade|Sys\Events|ItWent}} for communication operations
* '''purpose''': an {{l/ver/clade|Sys\Events|ItWent}} for communication operations
==Code==
''as of 2025-10-01''
{{fmt/php/block|1=
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); }
}
}}

Latest revision as of 14:10, 1 October 2025

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); }
}