Add Response object

This commit is contained in:
2021-01-23 01:07:14 +03:00
parent 8046eae846
commit fbe24eb6c4
6 changed files with 99 additions and 69 deletions

14
src/Bytes.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
declare(strict_types=1);
namespace Nsq;
final class Bytes
{
public const BYTES_SIZE = 4;
public const BYTES_TYPE = 4;
public const BYTES_ATTEMPTS = 2;
public const BYTES_TIMESTAMP = 8;
public const BYTES_ID = 16;
}