Skip to content

Latest commit

 

History

History

Abstract Factory

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Abstract Factory

Abstract Factory pattern work as a super-factory that creates another factories. It can be considered as another abstraction of Factory Pattern.

base

For example, we will make Abstract Factory for teams in a business. If we want to connect to the team and get some data or functionality of the team, we can make RPC or HTTP connection to the team.

example

Source