3 Repos
Support for asynchronous network operations and callback patterns.
Distinguishing note: Focuses on the async programming model.
Explore 3 awesome GitHub repositories matching web development · Asynchronous Patterns. Refine with filters or upvote what's useful.
This project is a collection of engineering guidelines and best practices for writing readable and maintainable JavaScript source code. It serves as a clean code guide and refactoring manual to help developers improve the structure of their codebases. The repository provides a reference for applying SOLID principles to reduce coupling and enable extensions without modifying existing logic. It includes a naming convention standard for using explicit, searchable identifiers and a guide for asynchronous patterns to replace nested callbacks with clearer execution flows. The guidelines cover soft
Provides patterns for using promises and async/await to replace nested callbacks for improved readability.
Retrofit is a type-safe HTTP client that simplifies network communication by allowing developers to define API endpoints as interface methods. By using annotation-driven request mapping, it automatically translates these interface definitions into structured HTTP requests, ensuring consistent data structures and reducing manual configuration when interacting with remote web services. The project distinguishes itself through a highly modular architecture that separates network transport from data handling. It utilizes dynamic proxy generation to process method calls at runtime and offers a plu
Provides support for both synchronous and asynchronous network request patterns.
RxJavaSamples ist eine Sammlung von Referenzimplementierungen und praktischen Anleitungen zur Anwendung reaktiver Muster auf asynchrones Networking und State-Management. Sie bietet Code-Demonstrationen für die Integration reaktiver Streams mit Retrofit, um Netzwerkanfragen auf nicht-blockierende Weise zu verarbeiten. Das Projekt konzentriert sich auf asynchrone Muster für das Management von API-Aufrufen, einschließlich der Kombination konkurrierender Streams und der Verwendung von Subjects zum Caching emittierter Werte für das State-Management. Es demonstriert spezifisch, wie automatisierte Workflows zur Token-Aktualisierung implementiert werden, um authentifizierte Sitzungen ohne Unterbrechung des Nutzers aufrechtzuerhalten. Das Repository deckt breitere Fähigkeiten in der Request-Orchestrierung ab, wie das Sequenzieren abhängiger Netzwerkaufrufe und das Aggregieren mehrerer paralleler Anfragen in einzelne Antwortobjekte. Es enthält zudem Implementierungen für die Formatierung von Antwortdaten und adapterbasiertes Mapping von API-Antworten in strukturierte Java-Objekte.
Implements asynchronous patterns using RxJava for stream combination and state management.