Facade pattern ஒரு எளிமையான இடைமுகத்தை சிக்கலான subsystem க்கு வழங்குகிறது — அதன் சிக்கலான தன்மையை ஒரு ஒற்றை, சுத்தமான நுழைவு புள்ளির பின்னால் மறைக்கிறது. இது சிக்கலான கூறுகளின் தொகுப்பை பயன்படுத்த எளிதாக்குகிறது, அடிப்படை விவரங்களுக்கான அணுகல் நீக்காமல்.
Facade pattern என்ன செய்கிறது
FACADE → a SIMPLE interface in front of a COMPLEX subsystem:
→ the subsystem has many components/steps; the facade provides ONE easy interface
→ clients use the simple facade instead of dealing with the complexity directly
→ the facade coordinates the underlying components
→ HIDE complexity behind a clean, easy-to-use interface
