Skip to content

Commit

Permalink
doc: Update dependencies (Java 11) and typos in README.md
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Veit <[email protected]>
  • Loading branch information
sebveit committed Aug 29, 2024
1 parent fca0ada commit 5706711
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,21 +26,21 @@ on the wire format of D-Bus.

## Architecture
This framework is based on a non-blocking I/O framework
called [Netty](https://netty.io). Therefore its an asynchronous event-driven
network application framework.
called [Netty](https://netty.io). Therefore, it's an asynchronous
event-driven network application framework.

The application needs to implement specific handlers
that will get called by this framework. Those handlers
must be programmed in a non-blocking fashion.
Using Future and CompletionStage is a good way to do so.

The type system of D-Bus is implemented by introducing
facades to the data types of Java (Facade Design Pattern).
wrappers to the data types of Java.
This choice makes the framework a bit more robust and
the use of this framework approachable.

## Dependencies
* Java Runtime 8 or higher
* Java Runtime 11 or higher
* D-Bus 1.12 or higher

## Examples
Expand Down

0 comments on commit 5706711

Please sign in to comment.