Ferreteria/v0.6/clade/IO/Aspect/Connx/Process/@fx/Send

From Woozle Writes Code
< Ferreteria‎ | v0.6‎ | clade‎ | IO‎ | Aspect‎ | Connx‎ | Process
Jump to navigation Jump to search
fx: Send()

Status

Calls

Code

As of 2025-12-23:

#
    public function Send() {
        $oSendBuff = $this->GetSendBuff();
        $oRecvBuff = $this->GetRecvBuff();
        $oaPipes = $this->OAPipes();
        $this->StreamToPipe($oSendBuff,$oaPipes->DestRsrc());
        $this->PipeToStream($oRecvBuff,$oaPipes->SrceRsrc(),FALSE);  // ...I *think*.
    }