mirror of
https://github.com/danog/process.git
synced 2024-11-30 04:39:04 +01:00
21 lines
305 B
PHP
21 lines
305 B
PHP
<?php
|
|
|
|
namespace Amp\Process\Internal\Windows;
|
|
|
|
use Amp\Struct;
|
|
|
|
/**
|
|
* @internal
|
|
* @codeCoverageIgnore Windows only.
|
|
*/
|
|
final class PendingSocketClient
|
|
{
|
|
use Struct;
|
|
|
|
public $readWatcher;
|
|
public $timeoutWatcher;
|
|
public $receivedDataBuffer = '';
|
|
public $pid;
|
|
public $streamId;
|
|
}
|