Technical & DevelopmentIntermediate
azure-messaging-webpubsub-java
Real-time WebSocket messaging
Developer Setup
Setup & Installation
bash
npx skills add https://github.com/microsoft/skills --skill azure-messaging-webpubsub-javanpx skills add https://github.com/microsoft/skills --skill azure-messaging-webpubsub-javaOr paste this URL into your assistant to install:
Overview
What This Skill Does
Java SDK for Azure Web PubSub, a managed service that handles WebSocket connections at scale. Use it to send messages to individual connections, users, or groups from your server-side Java code.
Application
When to use this Skill
- Configuring integration settings for custom agent workflows.
- Optimizing query execution and response latency in production.
- Developing clean, standard-compliant implementations for enterprise services.
- Troubleshooting connection timeouts and authentication handshakes.
- Monitoring API rate limits and execution pipelines programmatically.
Documentation
Show Skills.md file
Azure Web PubSub SDK for Java
Build real-time web applications using the Azure Web PubSub SDK for Java.
Installation
<dependency>
<groupId>com.azure</groupId>
<artifactId>azure-messaging-webpubsub</artifactId>
<version>1.5.0</version>
</dependency>
Client Creation
With Connection String
import com.azure.messaging.webpubsub.WebPubSubServiceClient;
import com.azure.messaging.webpubsub.WebPubSubServiceClientBuilder;
WebPubSubServiceClient client = new WebPubSubServiceClientBuilder()
.connectionString("<connection-string>")
.hub("chat")
.buildClient();
Lines 1 - 27 of 308
Recommendations
Explore other random skills
OfficeIntermediate
read-file
Read any data file (CSV, JSON, Parquet, Avro, Excel, spatial) locally or from remote storage
OfficeIntermediate
duckdb-docs
Search DuckDB and DuckLake documentation using full-text search over HTTPS
TechnicalIntermediate
read-memories
Search past Claude Code session logs to recover context from previous conversations