Class SseEndpointInfo

Namespace
Kuestenlogik.Bowire.Protocol.Sse
Assembly
Kuestenlogik.Bowire.Protocol.Sse.dll

Describes an SSE endpoint for Bowire discovery.

public sealed class SseEndpointInfo
Inheritance
SseEndpointInfo
Inherited Members

Constructors

SseEndpointInfo(string, string, string?, string?)

public SseEndpointInfo(string path, string name, string? description = null, string? eventTypes = null)

Parameters

path string
name string
description string
eventTypes string

Properties

Description

Description of what events this endpoint produces.

public string? Description { get; }

Property Value

string

EventTypes

Comma-separated list of expected event types (e.g., "price,volume").

public string? EventTypes { get; }

Property Value

string

Name

Display name for the endpoint.

public string Name { get; }

Property Value

string

Path

The URL path of the SSE endpoint (e.g., "/events/ticker").

public string Path { get; }

Property Value

string