Artifacts using Core (7)
Sort:
popular
|
newest
# The Cayla Web Framework
Cayla makes easy creating web application with Ceylon.
## Creating a simple application in seconds
### Import the Cayla module
module my.app "1.0.0" {
import io.cayla.web "0.3.1";
}
### Write the controller
import io.cayla.web { ... }
object controller {
route("/")
shared class Index() extends Handler() {
Response handle() => ok {
"Hello World";
};
}
}
shared void run() {
value application = ...
Last Release on Feb 13, 2021
5. Chime
_Chime_ is time scheduler verticle which works on _Vert.x_ event bus and provides:
* scheduling with _cron-style_, _interval_ or _union_ timers:
* at a certain time of day (to the second);
* on certain days of the week, month or year;
* with a given time interval;
* with nearly any combination of all of above;
* repeating a given number of times;
* repeating until a given time / date
* repeating infinitely;
* proxying event bus with conventional interfaces
* applying time zones ...
Last Release on Feb 13, 2021
6. Platform
io.vertx.ceylon » platformApache
# Writing Verticles
As was described in the [main manual](http://vertx.io/manual.html#verticle), a verticle is the execution unit of Vert.x.
To recap, Vert.x is a container which executes packages of code called Verticles, and it ensures that the code in the
verticle is never executed concurrently by more than one thread. You can write your verticles in any of the languages
that Vert.x supports, and Vert.x supports running many verticle instances concurrently in the same Vert.x instance.
All the code you ...
Last Release on Feb 13, 2021
- Prev
- 1
- Next