Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/whothefluff/abap-wait
Wait without db commit
https://github.com/whothefluff/abap-wait
abap commit wait
Last synced: 13 days ago
JSON representation
Wait without db commit
- Host: GitHub
- URL: https://github.com/whothefluff/abap-wait
- Owner: whothefluff
- Created: 2024-06-27T08:37:21.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-06-27T16:24:41.000Z (5 months ago)
- Last Synced: 2024-10-11T02:23:31.106Z (about 1 month ago)
- Topics: abap, commit, wait
- Language: ABAP
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# abap-wait
Commit-free wait implementation
## Use
Create an instance of _ZIF_WAIT_:
```abap
data(wait) = cast zif_wait( new zcl_wait( 42 ) ).
```
Success
```abap
wait->trigger( ).
```
# dependencies:
- [https://github.com/whothefluff/abap-exceptions](https://github.com/whothefluff/abap-exceptions)