728x90 반응형 API2 Mqtt C# 예제 MQTT는 경량의 Messaging Protocol로,- 헤더 오버헤드가 작기 때문에 제한된 대역폭과 고비용의 네트워크 환경에서의 메시징에 최적화되어 있다.- 주로 IoT(Internet of Things) 환경에서 사용된다- 소형 장치들이 신뢰할 수 있게 데이터를 교환할 수 있도록 설계되었다. 발행/구도 모델(Publish/Subscribe Model)로 MQTT는 client가 특정 topic에 메시지를 발행하고, 다른 client가 해당 topic을 구독하여 메세지를 수신하게 된다.위와 같은 아키텍처에서도 한 server에서 topic을 다르게 하여 다른 client에 각기 다른 message를 전송할 수 있다. 이 때 Mqtt는 세 가지 QoS(Quality of Service)레벨을 제공한.. 2023. 1. 24. GraphQLServer with C# - Settings - Program.cs using GraphQLTestServer; var builder = WebApplication.CreateBuilder(args); builder.Services.AddSingleton() .AddHostedService(p => p.GetRequiredService()); builder.Services .AddGraphQLServer() .AddQueryType() .AddMutationType() .AddSubscriptionType() .AddInMemorySubscriptions(); var app = builder.Build(); app.UseRouting(); app.UseEndpoints(endpoints => { endpoints.MapGraphQL("/"); }).. 2022. 9. 26. 이전 1 다음 728x90 반응형