Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gnori-zon/visitor-result-pattern
example implementation using the pattern for safe flow control (without exception)
https://github.com/gnori-zon/visitor-result-pattern
java result safe-flow-control visitor-pattern
Last synced: about 2 months ago
JSON representation
example implementation using the pattern for safe flow control (without exception)
- Host: GitHub
- URL: https://github.com/gnori-zon/visitor-result-pattern
- Owner: gnori-zon
- License: mit
- Created: 2024-01-13T12:30:11.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-02-24T10:07:11.000Z (10 months ago)
- Last Synced: 2024-02-24T11:23:51.793Z (10 months ago)
- Topics: java, result, safe-flow-control, visitor-pattern
- Language: Java
- Homepage:
- Size: 75.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# visitor-result-pattern
## Description
Its own implementation of the **Result template** (safe control of flow). The visitor pattern was also used during implementation.
Main part is interface [Result](https://github.com/gnori-zon/visitor-result-pattern/blob/main/src/main/java/org/gnori/visitorresultpattern/common/Result.java)
Other is example use case
#
## Описание
Собственная реализация шаблона Result (безопасное управление потоком). Шаблон посетитель также использовался во время реализации.
Основная часть - интерфейс [Result](https://github.com/gnori-zon/visitor-result-pattern/blob/main/src/main/java/org/gnori/visitorresultpattern/common/Result.java)
Остальное - пример использования