Skip to content

Instantly share code, notes, and snippets.

@hackjutsu
Created May 20, 2019 06:21
Show Gist options
  • Select an option

  • Save hackjutsu/d623edc448e7ca0f6841742eacff9f8b to your computer and use it in GitHub Desktop.

Select an option

Save hackjutsu/d623edc448e7ca0f6841742eacff9f8b to your computer and use it in GitHub Desktop.
[medium snippets] #medium #designPattern #ProxyPattern
public class ProxyPatternDemo {
public static void main(String[] args) {
Image image = new ProxyImage("test_10mb.jpg");
image.display();
System.out.println("");
image.display();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment