Skip to content

Instantly share code, notes, and snippets.

@bm4cs
Created September 20, 2012 13:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bm4cs/3755855 to your computer and use it in GitHub Desktop.
Save bm4cs/3755855 to your computer and use it in GitHub Desktop.
BlogStreamInsightAustin01
public static IObserver<PointEvent<TEvent>> CreateObserver(string connectionString, bool storeCtis)
{
var res = new SqlAzureSink<TEvent>(connectionString, storeCtis);
return Observer.Create<PointEvent<TEvent>>(e => res.OnNext(e));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment