PHP Classes

File: docs/api/files/IThreadState.php.txt

Recommend this page to a friend!
  Classes of AlexanderC   Threadator   docs/api/files/IThreadState.php.txt   Download  
File: docs/api/files/IThreadState.php.txt
Role: Documentation
Content type: text/plain
Description: Documentation
Class: Threadator
Create threads and send messages between them
Author: By
Last change: Update of docs/api/files/IThreadState.php.txt
Date: 3 months ago
Size: 235 bytes
 

Contents

Class file image Download
<?php /** * @author AlexanderC <self@alexanderc.me> * @date 4/7/14 * @time 9:19 PM */ namespace Threadator; interface IThreadState { const WAITING = 2; const RUNNING = 4; const JOINED = 8; const STOPPED = 16; }