PHPackages                             switon/rpc - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. switon/rpc

ActiveLibrary[Queues &amp; Workers](/categories/queues)

switon/rpc
==========

Queue-backed synchronous request-reply calls between PHP handlers for Switon Framework

v1.0.0(1mo ago)00MITPHPPHP &gt;=8.3CI passing

Since Jun 6Pushed 2mo agoCompare

[ Source](https://github.com/switon-php/rpc)[ Packagist](https://packagist.org/packages/switon/rpc)[ Docs](https://github.com/switon-php/rpc)[ RSS](/packages/switon-rpc/feed)WikiDiscussions main Synced 3w ago

READMEChangelogDependencies (8)Versions (2)Used By (0)

Switon RPC Package
==================

[](#switon-rpc-package)

[![CI](https://camo.githubusercontent.com/7ab87598d6735207ec09b65b6e4d265d957a77781f02651acf47c0bdb622a121/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f737769746f6e2d7068702f7270632f63692e796d6c3f6272616e63683d6d61696e266c6162656c3d4349)](https://github.com/switon-php/rpc/actions/workflows/ci.yml) [![PHP 8.3+](https://camo.githubusercontent.com/c03f51341eebaefabbf137e291b20523fc74b4ffd084406d88524d266d95085d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f5048502d382e332532422d373737424234)](https://www.php.net/)

Switon's queue-backed request-reply RPC for mapped method calls, daemon workers, and reply/error handling.

Highlights
----------

[](#highlights)

- **Request-reply flow:** `RpcInterface::call()` sends one request and waits for the matching reply.
- **Method mapping:** RPC names can target methods or configured aliases.
- **Daemon worker:** requests can be pulled from a queue and dispatched by the invoker.
- **Clear failure types:** timeout, remote, protocol, and method failures are separated.
- **Queue-backed transport:** request handling is built around queued work.

Installation
------------

[](#installation)

```
composer require switon/rpc
```

Quick Start
-----------

[](#quick-start)

```
use Switon\Core\Attribute\Autowired;
use Switon\Rpc\RpcInterface;

class UserService
{
    #[Autowired] protected RpcInterface $rpc;

    public function profile(int $userId): array
    {
        return $this->rpc->call(UserProfileService::class . '::profile', ['userId' => $userId]);
    }
}

class UserProfileService
{
    public function profile(int $userId): array
    {
        return ['id' => $userId, 'name' => 'mark'];
    }
}
```

Docs:

License
-------

[](#license)

MIT.

###  Health Score

37

—

LowBetter than 81% of packages

Maintenance87

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

48d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/dc0f20ad15b0ae9fbf9c6e2cd3008692b0c88a877ec8d3e0119211314bf86fc8?d=identicon)[switon](/maintainers/switon)

---

Top Contributors

[![switon-php](https://avatars.githubusercontent.com/u/247358032?v=4)](https://github.com/switon-php "switon-php (5 commits)")

---

Tags

messagingqueuerpcswitonrpcqueuemessagingswiton

###  Code Quality

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/switon-rpc/health.svg)

```
[![Health](https://phpackages.com/badges/switon-rpc/health.svg)](https://phpackages.com/packages/switon-rpc)
```

###  Alternatives

[queue-interop/queue-interop

Promoting the interoperability of MQs objects. Based on Java JMS

48131.8M98](/packages/queue-interop-queue-interop)[bunny/bunny

Performant pure-PHP AMQP (RabbitMQ) non-blocking ReactPHP library

7466.8M46](/packages/bunny-bunny)[enqueue/enqueue-bundle

Message Queue Bundle

27716.0M43](/packages/enqueue-enqueue-bundle)[enqueue/enqueue

Message Queue Library

19820.7M63](/packages/enqueue-enqueue)[enqueue/amqp-tools

Message Queue Amqp Tools

14721.9M12](/packages/enqueue-amqp-tools)[enqueue/amqp-lib

Message Queue Amqp Transport

1138.9M71](/packages/enqueue-amqp-lib)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
