Skip to content

Commit

Permalink
Create MapDescriptor.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed Jun 27, 2024
1 parent 128a938 commit c012ed9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions src/http/partials/Server/MapDescriptor.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System;
using Netly.Interfaces;

namespace Netly
{
internal class MapDescriptor
{
public bool UseParams { get; }
public string Path { get; }
public string Method { get; }
public bool IsWebsocket { get; }
public Action<IHTTP.ServerRequest, IHTTP.ServerResponse> HttpCallback { get; }
public Action<IHTTP.ServerRequest, HTTP.WebSocket> WebsocketCallback { get; }

public MapDescriptor
(
string path,
bool useParams,
string method,
bool isWebsocket,
Action<IHTTP.ServerRequest, IHTTP.ServerResponse> httpCallback,
Action<IHTTP.ServerRequest, HTTP.WebSocket> websocketCallback
)
{
Path = path;
UseParams = useParams;
Method = method;
IsWebsocket = isWebsocket;
HttpCallback = httpCallback;
WebsocketCallback = websocketCallback;
}
}
}

0 comments on commit c012ed9

Please sign in to comment.