Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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)

Остальное - пример использования