3 implementations of IStreamFormatter
SocialWeather (3)
Json\JSonStreamFormatter.cs (1)
8
public class JsonStreamFormatter<T> :
IStreamFormatter
<T>
Pipe\PipeWeatherStreamFormatter.cs (1)
8
public class PipeWeatherStreamFormatter :
IStreamFormatter
<WeatherReport>
Protobuf\ProtobufWeatherStreamFormatter.cs (1)
8
public class ProtobufWeatherStreamFormatter :
IStreamFormatter
<SocialWeather.WeatherReport>
5 references to IStreamFormatter
SocialWeather (5)
FormatterResolver.cs (3)
19
where TFormatterType :
IStreamFormatter
<T>
29
public
IStreamFormatter
<T> GetFormatter<T>(string formatType)
36
return (
IStreamFormatter
<T>)_serviceProvider.GetRequiredService(typeFormatterType);
PersistentConnectionLifeTimeManager.cs (1)
46
var
formatter = _formatterResolver.GetFormatter<T>((string)connection.Items["format"]);
SocialWeatherConnectionHandler.cs (1)
32
var
formatter = _formatterResolver.GetFormatter<WeatherReport>(