Initial commit of guarded suspension design pattern

This commit is contained in:
Robert Kasperczyk
2017-01-06 00:57:47 +01:00
parent cca4760f69
commit 764ff4bf53
8 changed files with 219 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
@startuml
package com.iluwatar.guarded.suspension {
class GuardedQueue {
- LOGGER : Logger {static}
- sourceList : Queue<Integer>
+ GuardedQueue()
+ get() : Integer
+ put(e : Integer)
}
}
@enduml