The title basically spells it out. What interfaces have you written that makes you proud and you use a lot. I guess the guys that wrote IEnumerable<T> and not least IQueryable<T> had a good feeling after creating those.
|
2
|
|
|||
|
|
|
I'm pleased with the design of the interface at the heart of Push LINQ. It's a very simple interface, but with it you can do all kinds of interesting things. Here's the definition (from memory, but it'll be pretty close at least):
Basically it allows observers to "listen" on a stream of data instead of "pulling" from it in the way that IEnumerable works. Three points of interest:
|
||||||||||
|
|
|
I'm not so sure. Additionally, similar languages that have similar constructs (Java comes to mind) have a much better, more extensible construct to fulfill the same needs (and more). For example, Java's iterators can be extended to be bidirectional or to allow modifying access (whereas EDIT: Since there's so much controversy in the comments, let me clarify. I'm not saying that Terjet said that he “use[s] it all the time” – which is precisely my point! “Adequate” is just another word for failure. |
||||||||||
|
|
|
Strictly an interface? Or just an API? I'm kinda pleased with how the generic operator stuff worked out (available here) - I regularly see people asking about using operators with generics, so I'm glad it is a handy answer for a lot of people. It might be slightly easier in C# 4.0, but I very much doubt it will be as fast - the DLR-tree/dynamic stuff has an overhead. I'm also quite happy that it was helpful in the Push LINQ that Jon has already mentioned ;-p |
||||
|
|
|
I am working on a validation system I plan on releasing to the community soon. It is essentially an implementation of the Specification pattern. The core interface is designed to be functional in nature:
This allows validators to express "I have no opinion" instead of returning a misleading Composition comes naturally and is done with static classes a la Linq. Each dot into the check is an implicit
Extension methods work nicely:
Each operation includes overloads which take a check-building lambda:
So you can do syntax like this:
|
||||
|
|
|
This is an ActionScript 3 interface which was the core of our for the Flash Player's new behaviour in as3.
As you'd expect, the C++ programmers may scoff at this 'innovative' interface (which is totally fair enough), but as3 introduced a whole lot of issues surrounding memory management in Flash. These issues are all "old hat" for many compiled languages, but actionscript programmers are just now experiencing these challenges for the first time. Yes, it's still a garbage collected language. But for better or worse, there's a lot less 'hand-holding' than in ActionScript 2, as evidenced by the need for this interface. |
||
|
|
|
|
For doing MVP-pattern work I have a few basic framework interfaces:
With these 3 interfaces I can write presenter which has these generic operations (which cover basically all form operations). Eg:
You can then create a presenter and stub it out. |
||
|
|
