I cant figure out this line ...
public StockTickerHub() : this(StockTicker.Instance) { }
It looked a bit like inheriting from a base class but I havent seen this
used like this before.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Microsoft.AspNet.SignalR;
using Microsoft.AspNet.SignalR.Hubs;
namespace SignalR.StockTicker
{
[HubName("stockTickerMini")]
public class StockTickerHub : Hub
{
private readonly StockTicker _stockTicker;
public StockTickerHub() : this(StockTicker.Instance) { }
public StockTickerHub(StockTicker stockTicker)
{
_stockTicker = stockTicker;
}
public IEnumerable<Stock> GetAllStocks()
{
return _stockTicker.GetAllStocks();
}
}
}
It calls another constructor of the same class.
public class Foo
{
public Foo() : this (1) { }
public Foo(int num)
{
}
}
Calling new Foo()
will invoke Foo(1)
.
More info: http://www.dotnetperls.com/this-constructor
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With