Thomas Punt

Results 11 issues of Thomas Punt

**Type of PR:** Enhancement **PR checklist:** - [ ] Addresses an existing issue: fixes # - [ ] Includes tests - [ ] Documentation update **Overview of change:** I have...

Work has begun on the internal non-blocking APIs (see the [non-blocking-io](https://github.com/tpunt/phactor/compare/non-blocking-io) branch). These APIs will allow for the automatic interruption of an actor when an IO operation is performed, where...

enhancement
hard

Work on supervision trees has begun in the [supervision-trees](https://github.com/tpunt/phactor/compare/supervision-trees) branch. The API I currently have in mind looks as follows: ```php final class Supervisor { public const ONE_FOR_ONE = 0;...

enhancement
hard

To perform autoloading in the actor system, an autoloader should be accepted by the actor system constructor (I don't see other cleaner ways to do this). The autoloader (for now)...

enhancement
medium

Closures cannot be serialised inside of arrays. This is because arrays are simply serialised with PHP's internal serialiser. Closures require special handling with serialisation, and so arrays will need to...

bug
medium

This same problem also affects pht and pthreads.

bug
medium

**Is your feature request related to a problem? Please describe.** I have implemented bar replay mode in my personal app. This is for things such as analysing price data as...

needs investigation
proposal

This issue tracks the documentation/resources issues. The following places need updating: - [x] examples/ - [ ] pthreads.org website - [x] Remove outdated content - [ ] Include new information...

documentation problem

**Lightweight Charts™ Version:** 5.0.9 **Steps/code to reproduce:** When adding axis views for price, the `fixedCoordinate()` method is marked as optional in `ISeriesPrimitiveAxisView`. However, if this is not specified, then the...

bug

**Type of PR:** bugfix **PR checklist:** - [x] Addresses an existing issue: fixes #1986 - [x] Includes tests - [ ] Documentation update **Overview of change:** Before (label is fixed...