mirror of
https://git.yoctoproject.org/poky
synced 2026-02-23 18:09:40 +01:00
Rewrites the asyncrpc client and server code to make it possible to have other transport backends that are not stream based (e.g. websockets which are message based). The connection handling classes are now shared between both the client and server to make it easier to implement new transport mechanisms (Bitbake rev: 2aaeae53696e4c2f13a169830c3b7089cbad6eca) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
16 lines
305 B
Python
16 lines
305 B
Python
#
|
|
# Copyright BitBake Contributors
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
|
|
|
|
from .client import AsyncClient, Client
|
|
from .serv import AsyncServer, AsyncServerConnection
|
|
from .connection import DEFAULT_MAX_CHUNK
|
|
from .exceptions import (
|
|
ClientError,
|
|
ServerError,
|
|
ConnectionClosedError,
|
|
)
|