mirror of
https://github.com/danog/process.git
synced 2024-12-04 02:27:49 +01:00
16 lines
247 B
PHP
16 lines
247 B
PHP
<?php
|
|
|
|
namespace Amp\Process\Internal\Windows;
|
|
|
|
use Amp\Struct;
|
|
|
|
final class PendingSocketClient {
|
|
use Struct;
|
|
|
|
public $readWatcher;
|
|
public $timeoutWatcher;
|
|
public $receivedDataBuffer = '';
|
|
public $pid;
|
|
public $streamId;
|
|
}
|