#
asynchronous-programming
Here are 508 public repositories matching this topic...
adamgfraser
commented
Apr 14, 2021
A library of C++ coroutine abstractions for the coroutines TS
windows
linux
cplusplus
cpp
async
coroutines
clang
asyncio
asynchronous-programming
async-await
msvc
coroutines-ts
-
Updated
Jul 29, 2021 - C++
Write great asynchronous code in Swift using futures and promises
-
Updated
Aug 10, 2021 - Swift
An RPC framework for Rust with a focus on ease of use.
-
Updated
Sep 2, 2021 - Rust
Advanced Operations in Swift
-
Updated
Jul 21, 2021 - Swift
deniskamazur
commented
Aug 24, 2021
Currently, the daemon sends a status message to the client after a persistent connection to it is openned. This is a no-op, as the status message is either "ok" or not sent at all. I suggest we remove this feature from the daemon as this might improve startup times and reduce code complexity.
Modern concurrency for C++. Tasks, executors, timers and C++20 coroutines to rule them all
cpp
scheduler
coroutines
concurrency
tasks
multithreading
concurrent-programming
asynchronous-programming
threading
await
async-await
task-scheduler
thread-safety
timers
executor-service
coroutine
threadpool
cpp20
executors
-
Updated
Sep 7, 2021 - C++
FP iterators that are both eager and asynchronous
-
Updated
Feb 1, 2021 - JavaScript
Full stack application platform for building stateful web services, streaming APIs, and real-time UIs
distributed-systems
real-time
serverless
websockets
actor-model
serverless-framework
asynchronous-programming
streaming-api
microservices-architecture
stateful
streaming-data
non-blocking-io
decentralized-applications
web-agent
mesh-js
ux-js
-
Updated
Sep 6, 2021 - Java
A framework for rapid development of reliable asynchronous software.
-
Updated
Nov 4, 2020 - C#
A promise library for Clojure(Script)
promises
clojure
clojurescript
promise-library
async-programming
asynchronous-programming
async-await
-
Updated
Jun 1, 2021 - Clojure
a non-blocking I/O tcp network lib based on c++14/17
-
Updated
Sep 7, 2021 - C++
A pythonic, asynchronous, inotify interface
-
Updated
Feb 27, 2021 - Python
Chronos - An efficient library for asynchronous programming
-
Updated
Sep 4, 2021 - Nim
Implementation of blocking (IO-Bound) cancellable java.util.concurrent.CompletionStage and related extensions to java.util.concurrent.ExecutorService-s
java
promises
async
executor
asynchronous
promise
concurrency
promise-library
async-programming
completionstage
completablefuture
concurrent-programming
java8
asynchronous-programming
concurrent
java-library
java9
executorservice
promise-interface
java11
-
Updated
Jul 28, 2021 - Java
Asynchronous operations (promises) for Unity3d.
c-sharp
task
csharp
unity
async
dotnet
nuget
promise
coroutines
game-development
unity3d
async-programming
asynchronous-programming
future
yield
async-await
unity-engine
coroutine
unityfx
async-operation
-
Updated
Feb 18, 2020 - C#
Declarative concurrency in Scala - The implementation of the chemical machine
csp
scala
functional-programming
jvm
dsl
actor-model
concurrency
declarative
multithreading
parallelism
async-channels
concurrent-programming
asynchronous-programming
chemical-machine
join-calculus
multicore
-
Updated
Aug 9, 2020 - Scala
Most.js based middleware for Redux. Handle async actions with monadic streams & reactive programming.
redux
middleware
reactive
redux-observable
functional
rxjs
sagas
redux-saga
functional-programming
async
epics
observable
reactive-programming
streams
redux-thunk
asynchronous-programming
mostjs
monadic-streams
most
the-saga-pattern
-
Updated
Nov 1, 2019 - JavaScript
Flutter State Management [ setState ❖ StreamBuilder ❖ scoped_model ❖ redux ]
-
Updated
Sep 30, 2020 - Dart
纯C语言高性能异步多任务多事件驱动的协程库| Pure C language high-performance asynchronous multi-task multi-event driven coroutine library.
-
Updated
Jun 24, 2020 - C
Asynchronous PHP Telegram Bot Framework built on top of ReactPHP
-
Updated
Aug 8, 2021 - PHP
Crypto arbitrage bot
asynchronous-programming
microservices-architecture
python27
arbitrage-bot
cryptotradingbot
cryptotrading
-
Updated
Sep 17, 2019 - Python
Light-weight header-only library for parallel function calls and continuations in C++ based on Eric Niebler's talk at CppCon 2019.
cpp
parallel-computing
concurrent-programming
asynchronous-programming
thread-pool
cpp17
taskparallelism
multicore-programming
stop-token
parallel-computation
-
Updated
May 5, 2021 - C++
Async / Await asynchronous programming model for Java similar to the functionality available in C# 5. The implementation is based on continuations for Java (see my other projects).
-
Updated
Jul 29, 2021 - Java
A small and efficient web server with 1K lines of C code
-
Updated
May 20, 2021 - C
stream
functional-programming
asynchronous
composition
continuation
callback
reducer
monad
functor
control-flow
asynchronous-tasks
asynchronous-programming
continuation-passing-style
applicative
curried-functions
variadic
continuation-passing
continuation-tasks
point-free
callback-manager
-
Updated
Aug 23, 2021 - JavaScript
Python framework for asynchronous, concurrent, distributed, network programming with coroutines
-
Updated
Mar 1, 2018 - Python
Custom Apex queue to process arbitrary work on existing SObject in a guaranteed order.
-
Updated
Jun 22, 2019 - Apex
Asynchronous Event-driven server programming for EMB Delphi, powered by libuv.
-
Updated
Oct 17, 2019 - Pascal
Improve this page
Add a description, image, and links to the asynchronous-programming topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the asynchronous-programming topic, visit your repo's landing page and select "manage topics."
Could you make
HttpResponse
capable of sending part of file byRange
header, or by user specified offset and size ?The
TcpConnection
class do have a publicsendFile
method with offset and length parameters, butHttpResponse
can not take any advantages of that. Currently it can only send the whole file at one time. Maybe asetRange
method would be enough?