managedcode-orleans-signalr

Featured

Use ManagedCode.Orleans.SignalR when a distributed .NET application needs Orleans-based coordination of SignalR real-time messaging, hub delivery, and grain-driven push flows. USE FOR: integrating ManagedCode.Orleans.SignalR into a real-time distributed application; coordinating SignalR delivery from Orleans grains; reviewing grain-to-hub push flows. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

AI & Automation 463 stars 35 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 92/100

Stars 20%
89
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
67
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# ManagedCode.Orleans.SignalR ## Trigger On - integrating `ManagedCode.Orleans.SignalR` into a real-time distributed application - coordinating SignalR delivery from Orleans grains - reviewing grain-to-hub push flows and connection routing - documenting how Orleans state or events become SignalR messages ## Workflow 1. Confirm the application genuinely needs both Orleans and SignalR in the same flow. 2. Identify which grain events or workflows should publish to connected clients. 3. Keep Orleans domain logic in grains and SignalR transport concerns in the integration boundary. 4. Document how user, group, or connection targeting is resolved. 5. Validate end-to-end message delivery from grain event to connected client. ```mermaid flowchart LR A["Orleans grain event"] --> B["ManagedCode.Orleans.SignalR integration"] B --> C["SignalR hub delivery"] C --> D["Connected client or group"] ``` ## Deliver - guidance on where the Orleans-to-SignalR bridge belongs - separation between grain logic and transport concerns - validation expectations for real-time distributed delivery ## Validate - the integration is justified instead of mixing Orleans and SignalR casually - grain logic stays focused on domain or orchestration concerns - real-time delivery is verified end to end, not only through registration code

Details

Author
managedcode
Repository
managedcode/dotnet-skills
Created
4 months ago
Last Updated
3 days ago
Language
C#
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

managedcode-orleans-graph

Integrate ManagedCode.Orleans.Graph into an Orleans-based .NET application for grain-call policy enforcement, deadlock detection, live-call telemetry, and Mermaid graph diagnostics. USE FOR: ManagedCode.Orleans.Graph integration; allowed grain transitions; Orleans call filters; live policy graphs; reviewing Orleans call-cycle risk. DO NOT USE FOR: generic graph data modeling or traversal unrelated to Orleans calls. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

463 Updated 3 days ago
managedcode
Code & Development Featured

managedcode-communication

Use ManagedCode.Communication when a .NET application needs explicit result objects, structured errors, and predictable service or API boundaries instead of exception-driven control flow. USE FOR: integrating ManagedCode.Communication into services or APIs; replacing exception-driven result handling with explicit results; reviewing service boundaries that return. DO NOT USE FOR: unrelated stacks; generic tasks that do not need this specific guidance. INVOKES: inspect the repository context, edit targeted files, and run relevant build, test, lint, or validation commands when changes are made.

463 Updated 3 days ago
managedcode
AI & Automation Featured

orleans

Design Microsoft Orleans systems from each primitive's purpose and failure model. USE FOR: grains, digital twins, state versus databases, transactions, messaging, streams, timers, reminders, Durable Jobs, stateless workers, grain services, startup, and hosting. DO NOT USE FOR: other actor stacks, batches, relational-only CRUD, or advice without an Orleans decision. INVOKES: inspect version and topology, choose the primitive, implement, and validate.

463 Updated 3 days ago
managedcode