Delegate (CLI)
A delegate is a form of type-safe function pointer used by the Common Language Infrastructure (CLI). Delegates specify a method to call and optionally an object to call the method on. Delegates are used, among other things, to implement callbacks and event listeners. A delegate object encapsulates a reference to a method. The delegate object can then be passed to code which can call the referenced method, without having to know at compile time which method will be invoked.
C# code example
Code to declare a delegate
type, named SendMessageDelegate
, which takes a Message
as a parameter and returns void
:
delegate void SendMessageDelegate(Message message);
Code to define a method which takes an instantiated delegate as its argument:
void SendMessage(SendMessageDelegate sendMessageDelegateReference)
{
// call the delegate and any other chained delegates synchronously
sendMessageDelegateReference(new Message("hello this is a sample message"));
}
The implemented method which runs when the delegate is called:
void HandleSendMessage(Message message)
{
// the implementation for the Sender and Message classes are not relevant to this example
Sender.Send(message);
}
Code to call the SendMessage method, passing an instantiated delegate as an argument:
SendMessage(new SendMessageDelegate(HandleSendMessage));
Technical implementation details
Although internal implementations may vary, delegate instances can be thought of as a tuple of an object and a method pointer and a reference (possibly null) to another delegate. Hence a reference to one delegate is possibly a reference to multiple delegates. When the first delegate has finished, if its chain reference is not null, the next will be invoked, and so on until the list is complete. This pattern allows an event to have overhead scaling easily from that of a single reference up to dispatch to a list of delegates, and is widely used in the CLI.
Performance
Performance of delegates used to be much slower than a virtual or interface method call (6 to 8 times slower in Microsoft's 2003 benchmarks),[1] but, since the .NET 2.0 CLR in 2005, it is about the same as interface calls.[2] This means there is a small added overhead compared to direct method invocations.
There are very stringent rules on the construction of delegate classes. These rules permit optimizing compilers a great deal of leeway when optimizing delegates while ensuring type safety.
See also
References
- ↑ Gray, Jan (June 2003). "Writing Faster Managed Code: Know What Things Cost". Microsoft. Retrieved 2007-09-09.
- ↑ Sturm, Oliver (2005-09-01). "Delegate calls vastly sped up in .NET 2". Retrieved 2007-09-09.
External links
- MSDN documentation for Delegates
- Delegates with sample code
- Sun's White Paper on Delegates
- Microsoft answer to Sun
- Inner workings of Delegates