Tagged Questions

26
votes
13answers
1k views

Method chaining - why is it a good practice, or not?

Method chaining is the practice of object methods returning the object itself in order for the result to be called for another method. Like this: ...
3
votes
1answer
153 views
3
votes
1answer
172 views

Detecting end of method chain in PHP?

I cannot find a simple example about my question above: how can i detect the end of a method chain? I'm just looked Zend_Db_Select for example but this one is too complex for this simple question i ...
2
votes
2answers
137 views

Test doubles (mocks/stubs) against method chaining or fluent interface syntax

I have code under test that basically looks like this (the specific code isn't important to the question. It is just here for explanatory purposes): public ICollection<Product> ...
2
votes
3answers
439 views

Is jQuery method chaining an example of fluent programming?

I'm somewhat new to JavaScript/jQuery, but when I saw examples of method chaining it struck me as instantly familiar. Other interfaces like LINQ do something similar where the return type of a set of ...
1
vote
2answers
69 views

Is it possible to set a breakpoint in a method chain in VS, and if so how?

Given the code [Test] public void Test1() { var a = new A(); a .Method1() .Method2(); } is it possible to set a breakpoint so that execution ...
1
vote
8answers
202 views

Languages that take chaining to the extreme?

So, I was just thinking about how cool chaining is and how it makes things easier to read. With a lot of languages, when applying a bunch of functions to a variable, you'd write something like this: ...
1
vote
2answers
131 views

how is FLUENT api different from other API

i have come across fluent api while studying DSLs. i have searched alot on FLUENT API..the basic conclusion which i could draw out was that fluent api uses method chaining in order to make the code ...
1
vote
2answers
554 views

Fluent API and Method-Chaining Style Usage

When programming against a fluent API or just using method-chaining, I've seen the style mostly like this: var obj = objectFactory.CreateObject() .SetObjectParameter(paramName, value) ...