awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 repository

Awesome GitHub RepositoriesProtocol Patterns

Standardized design patterns for implementing communication protocols.

Distinguishing note: Focuses on architectural patterns for protocol implementation.

Explore 1 awesome GitHub repository matching software engineering & architecture · Protocol Patterns. Refine with filters or upvote what's useful.

Awesome Protocol Patterns GitHub Repositories

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • twisted/twistedAvatar twisted

    twisted/twisted

    5,969Vezi pe GitHub↗

    Twisted is an event-driven networking engine for Python that provides a framework for building asynchronous network applications. At its core, it uses a reactor-based event loop to drive all input and output, dispatching callbacks in a single thread without blocking. The library implements a deferred promise chain for composing asynchronous logic, along with a protocol and factory pattern that separates connection state management from protocol handling, enabling reusable handlers for different network protocols. The framework supports multiple event loops across platforms, including select,

    Implements the protocol and factory pattern to separate connection state from protocol logic.

    Pythonasyncasync-pythondns
    Vezi pe GitHub↗5,969
  1. Home
  2. Software Engineering & Architecture
  3. Protocol Patterns

Explorează sub-etichetele

  • Protocol and Factory PatternsSeparates connection state management from protocol logic, allowing reusable handlers for different network protocols. **Distinct from Protocol Patterns:** Distinct from Protocol Patterns: specifically combines protocol handlers with factory-based connection management, not just protocol state machines.