top button
Flag Notify
Site Registration

What is a fluent interface?

+3 votes
218 views

How to create a fluent interface ?

posted Sep 18, 2014 by Merry

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote
 
Best answer

A fluent interface is normally implemented by using method cascading (concretely method chaining) to relay the instruction context of a subsequent call (but a fluent interface entails more than just method chaining ). Generally, the context is

defined through the return value of a called method
self-referential, where the new context is equivalent to the last context
terminated through the return of a void context.

answer Sep 25, 2014 by Arun Gowda
Similar Questions
+3 votes

And how to implement tracing in .net?

+2 votes

When do we implement which of these?

+2 votes

When should you use abstract class vs interface or What is the difference between an abstract class and interface?

...