/
githubmirror
/
java-design-patterns
Обзор
Документация
Войти
/
githubmirror
/
java-design-patterns
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
1.17.0
event-queue/etc/event-queue.urm.puml
26 строк
641 B
Mihály Kuprivecz
read.me and the diagram is added
22 апр 2017, 18:16
22 апр 2017, 18:16
152b276
Код
Авторство
О чём код?
@startuml package com.iluwatar.event.queue { class App { + App() + getAudioStream(filePath : String) : AudioInputStream {static} + main(args : String[]) {static} } class Audio { - MAX_PENDING : int {static} - headIndex : int {static} - pendingAudio : PlayMessage[] {static} - tailIndex : int {static} - updateThread : Thread {static} + Audio() + init() {static} + playSound(stream : AudioInputStream, volume : float) {static} + stopService() {static} + update() {static} } class PlayMessage { ~ stream : AudioInputStream ~ volume : float + PlayMessage() } } @enduml