1
0
mirror of https://github.com/danog/process.git synced 2024-12-02 17:51:46 +01:00
process/lib/Internal/Windows/PendingSocketClient.php

20 lines
305 B
PHP
Raw Normal View History

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