| ... | @@ -4,8 +4,58 @@ |
... | @@ -4,8 +4,58 @@ |
|
|
|
|
|
|
|
## TaRDIS Project
|
|
## TaRDIS Project
|
|
|
|
|
|
|
|
> This project was developed in the context of the [TaRDIS](https://cordis.europa.eu/project/id/101016175) European project (EU Horizon 2020, Grant Agreement No. 101016175) by the **Computer Systems group** of [NOVA LINCS](https://nova-lincs.di.fct.unl.pt/) at [FCT-UNL](https://www.fct.unl.pt/).
|
|
> This project was developed in the context of the
|
|
|
|
> [TaRDIS](https://project-tardis.eu/) European Project
|
|
|
|
> (EU Horizon 2020, Grant Agreement No. 101016175)
|
|
|
|
> by the **[Computer Systems Group, NOVA LINCS](https://novasys.di.fct.unl.pt/)**
|
|
|
|
> at [FCT-UNL](https://www.fct.unl.pt/).
|
|
|
|
> Also: [NOVA LINCS](https://nova-lincs.di.fct.unl.pt/) |
|
|
|
|
> [TaRDIS on CORDIS](https://cordis.europa.eu/project/id/101016175)
|
|
|
|
|
|
|
|
## Authors
|
|
|
|
|
|
|
|
Computer Systems Group, NOVA LINCS, FCT-UNL
|
|
|
|
|
|
|
|
## Quick Start
|
|
|
|
|
|
|
|
### Maven Dependency
|
|
|
|
|
|
|
|
_See pom.xml for build instructions._
|
|
|
|
|
|
|
|
### Minimal Example
|
|
|
|
|
|
|
|
```java
|
|
|
|
// Load configuration
|
|
|
|
Properties props = new Properties();
|
|
|
|
props.load(new FileInputStream("config.properties"));
|
|
|
|
|
|
|
|
// Start Babel runtime
|
|
|
|
Babel babel = Babel.getInstance();
|
|
|
|
babel.registerProtocol(new LinuxEpoll(props, myHost));
|
|
|
|
babel.start();
|
|
|
|
```
|
|
|
|
|
|
|
|
## Key Features
|
|
|
|
|
|
|
|
- Java library / tool — see [Usage](usage) for integration instructions
|
|
|
|
|
|
|
|
## More Information
|
|
|
|
|
|
|
|
- [Usage](usage) — full setup and integration guide
|
|
|
|
- [Babel Interface](babel-interface) — notifications, requests and timers
|
|
|
|
- [Configuration](configuration) — all configuration parameters
|
|
|
|
|
|
|
|
|
|
|
|
---
|
|
---
|
|
|
|
|
|
|
|
**Wiki pages:** [Usage](usage) | [Babel Interface](babel-interface) | [Configuration](configuration) |
|
## License
|
|
|
|
|
|
|
|
This project is licensed under the [MIT License](LICENSE) — see the `LICENSE` file
|
|
|
|
in the repository for the full text.
|
|
|
|
|
|
|
|
Copyright © 2021–2026 [Computer Systems Group, NOVA LINCS](https://novasys.di.fct.unl.pt/)
|
|
|
|
at [FCT-UNL](https://www.fct.unl.pt/).
|
|
|
|
Developed in the context of the [TaRDIS](https://project-tardis.eu/) European Project
|
|
|
|
(EU Horizon 2020, Grant Agreement No. 101016175).
|
|
|
|
Also see: [NOVA LINCS](https://nova-lincs.di.fct.unl.pt/) |
|
|
|
|
[TaRDIS on CORDIS](https://cordis.europa.eu/project/id/101016175) |