-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from asiries335/mvp-2
add use react/event-loop
- Loading branch information
Showing
5 changed files
with
134 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<?php | ||
|
||
|
||
namespace Asiries335\redisSteamPhp\Data; | ||
|
||
|
||
final class Constants | ||
{ | ||
/** | ||
* COMMAND XADD | ||
* | ||
* @var string | ||
*/ | ||
public const COMMAND_XADD = 'xadd'; | ||
|
||
/** | ||
* COMMAND XREAD | ||
* | ||
* @var string | ||
*/ | ||
public const COMMAND_XREAD = 'xread'; | ||
|
||
/** | ||
* COMMAND XRANGE | ||
* | ||
* @var string | ||
*/ | ||
public const COMMAND_XRANGE = 'xrange'; | ||
|
||
/** | ||
* TIME TICK INTERVAL | ||
* | ||
* @var float | ||
*/ | ||
public const TIME_TICK_INTERVAL = 1; | ||
|
||
/** | ||
* COMMAND XDEL | ||
* | ||
* @var string | ||
*/ | ||
public const COMMAND_XDEL = 'xdel'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters