Fixing namespace
This commit is contained in:
parent
41c4211c6b
commit
08cd20f1a0
|
|
@ -3,7 +3,7 @@ using System;
|
|||
using System.Collections.Generic;
|
||||
using Microsoft.Extensions.DependencyInjection;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class FormatterResolver
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.IO;
|
|||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public interface IStreamFormatter<T>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.Threading.Tasks;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class JsonStreamFormatter<T> : IStreamFormatter<T>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,10 @@
|
|||
|
||||
using System;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using Channels;
|
||||
using Microsoft.AspNetCore.Sockets;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class PersistentConnectionLifeTimeManager
|
||||
{
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@ using System.Linq;
|
|||
using System.Threading.Tasks;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class Program
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
using System.IO;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class ProtobufWeatherStreamFormatter : IStreamFormatter<WeatherReport>
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ using Channels;
|
|||
using Microsoft.AspNetCore.Sockets;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class SocialWeatherEndPoint : EndPoint
|
||||
{
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using Microsoft.AspNetCore.Http;
|
|||
using Microsoft.Extensions.DependencyInjection;
|
||||
using Microsoft.Extensions.Logging;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public class Startup
|
||||
{
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@ using System.Collections.Generic;
|
|||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PersisitentConnection
|
||||
namespace SocialWeather
|
||||
{
|
||||
public enum Weather { Sunny, MostlySunny, PartlySunny, PartlyCloudy, MostlyCloudy, Cloudy }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue