Gavin Draper's SQL Server Blog
Archives: June 2012
C# Explicit Interface Implementation
In C# it is possible to write classes that implement an interface but only show the methods of the interface when the object is casted to the type of the interface.
For example lets say we have the following code
void Main() { var f = new SuperFoo(); f.doFoo(); f.doSuperFoo();…
0 comments, 26 reads
Posted in Gavin Draper's SQL Server Blog on 7 June 2012
SQL Server Service Broker Explained
What is Service Broker?
Service Broker is a native SQL Server implementation of message queues.
What are message queues?
Message queues are a way of sending asynchronous messages across boundaries. Different message queue implementations offer varying features but the key features offered by pretty much all of them are…
- Guaranteed…
0 comments, 50 reads
Posted in Gavin Draper's SQL Server Blog on 3 June 2012