Skip to content
amphp logo

Amp

Amp is a non-blocking concurrency framework for PHP. It provides an event loop, promises, and streams as a base for asynchronous programming.

Here are 91 public repositories matching this topic...

Bilge
Bilge commented Mar 24, 2018

Trying to learn Amp is difficult for someone new to coroutines and async in the context of PHP. Although I appreciate the work that has been done on the documentation so far, I still find it lacking for giving good background to the topic and its use.

For me, it has been helpful to start thinking about the "async context". It seems to me that in Amp, in order to do anything with async you must

kavnik
kavnik commented Jul 25, 2019

There are no enums in PHP, but it might be useful to add constants for available string values.

For example, in sendChatAction there is a parameter action with available values:
typing, upload_photo , record_video etc.

For this values it's possible to add constants in SendChatAction class:
const TYPE_TYPING = 'typing';
const TYPE_UPLOAD_PHOTO = 'upload_photo';
.

Learn about amphp

Organization
amphp
Website
amphp.org

Related topics

See more topics
php
You can’t perform that action at this time.