-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Kafka.DotNet.ksqlDB] - HttpResponseMessageExtensions.ToStatementResp…
…onses
- Loading branch information
1 parent
8545b7c
commit ef7c178
Showing
2 changed files
with
30 additions
and
1 deletion.
There are no files selected for viewing
27 changes: 27 additions & 0 deletions
27
Joker.Kafka/KSql/RestApi/Extensions/HttpResponseMessageExtensions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
using System.Net.Http; | ||
using System.Text.Json; | ||
using Kafka.DotNet.ksqlDB.KSql.RestApi.Statements; | ||
|
||
namespace Kafka.DotNet.ksqlDB.KSql.RestApi.Extensions | ||
{ | ||
public static class HttpResponseMessageExtensions | ||
{ | ||
public static StatementResponse[] ToStatementResponses(this HttpResponseMessage httpResponseMessage) | ||
{ | ||
string responseContent = httpResponseMessage.Content.ReadAsStringAsync().Result; | ||
|
||
var responseObjects = JsonSerializer.Deserialize<StatementResponse[]>(responseContent); | ||
|
||
return responseObjects; | ||
} | ||
|
||
public static StatementResponse ToStatementResponse(this HttpResponseMessage httpResponseMessage) | ||
{ | ||
string responseContent = httpResponseMessage.Content.ReadAsStringAsync().Result; | ||
|
||
var responseObject = JsonSerializer.Deserialize<StatementResponse>(responseContent); | ||
|
||
return responseObject; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters