Skip to content
Advertisement

Which design pattern for merging 2 methods they differ in one place

I wonder which design pattern should I use in my case: I have 2 endpoints that use 2 service methods, each very similar, they differ only in invoking some different methods from the same service:

My first service method (invoked by endpoint 1):

JavaScript

The second endpoint uses very similar method that differs in protectionCommandService.sendUnprotected (deleteBBB).

My secondservice method (invoked by endpoint 2):

JavaScript

I can pass to these methods deleteAAA and deleteBBB a parameter like Type type to somehow differentiate between the invoking of these methods. What would be the best way to merge these 2 methods into one method?

Advertisement

Answer

Abstract out what varies. You can pass functions as arguments with lambda expressions (or method references).

JavaScript

In the above code, we pass a Function that maps a tuple to something. For demonstration, I have named that type as Id.

Call it as

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement