Ferreteria/v0.6/clade/IO/Aspect/Connx/Process/@fx/Send
Jump to navigation
Jump to search
Status
- 2026-01-04 This cannot possibly work anymore because of too many args to
PipeToStream(). - 2025-12-23 Is this actually being used?
Calls
StreamToPipe($oSendBuff,$oaPipes->DestRsrc())PipeToStream($oRecvBuff,$oaPipes->SrceRsrc(),FALSE)
Code
#
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*.
}