Skip to content

Commit

Permalink
add pic, ref
Browse files Browse the repository at this point in the history
  • Loading branch information
yennanliu committed Oct 2, 2021
1 parent 5d16951 commit bd7c70b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,7 @@
- [remote-method-invocation-in-java](https://www.geeksforgeeks.org/remote-method-invocation-in-java/)
- RMI : via OOP, doing remote call (method)
- [DynamicProxy1](./src/main/scala/ScalaBasic/DynamicProxy1)
- [ref]("./doc/pic/dynamic_proxy.png")

12. Scala Script example
- [DirectoryOP](./src/main/scala/ScalaBasic/DirectoryOP.scala) - Scala `Directory OP` example
Expand Down
Binary file added doc/pic/dynamic_proxy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ScalaBasic.DynamicProxy1

// https://www.bilibili.com/video/BV12N411R726?p=270&spm_id_from=pageDriver
// ref : /doc/pic/dynamic_proxy.png

import java.lang.reflect.{InvocationHandler, Method}

Expand Down
1 change: 1 addition & 0 deletions src/main/scala/ScalaBasic/DynamicProxy1/app.scala
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ScalaBasic.DynamicProxy1

// https://www.bilibili.com/video/BV12N411R726?p=270&spm_id_from=pageDriver
// ref : /doc/pic/dynamic_proxy.png

object app extends App {
var mMatchService: MatchService = new MatchService()
Expand Down

0 comments on commit bd7c70b

Please sign in to comment.