Skip to content

Commit 71610be

Browse files
authored
Update README.md
1 parent c04f8dd commit 71610be

1 file changed

Lines changed: 17 additions & 1 deletion

File tree

README.md

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[![Travis-CI](https://travis-ci.org/victorlaerte/javafx-asynctask.svg?branch=master)](https://github.com/victorlaerte/javafx-asynctask)
22
[![Open Source Love](https://badges.frapsoft.com/os/v1/open-source.svg?v=103)](https://github.com/ellerbrock/open-source-badge/)
33

4-
AsyncTask
4+
JavaFx AsyncTask
55
=========
66

77
This class was created to simplify how to handle Thread tasks in Javafx, and it is based on the same idea of AsyncTask from Android.
@@ -12,6 +12,22 @@ An asynchronous task is defined by a computation that runs on a background threa
1212

1313
Optionally you have the method setDaemon to set your threads daemon, which means that if your javafx application has been closed it can still running or not. setDamon(boolean) can only be called before the thread has been started. By default the thread is set to daemon.
1414

15+
Use
16+
=========
17+
**Maven**
18+
```
19+
<dependency>
20+
<groupId>com.victorlaerte</groupId>
21+
<artifactId>jfx-asynctask</artifactId>
22+
<version>1.0.1</version>
23+
<type>pom</type>
24+
</dependency>
25+
```
26+
**Gradle**
27+
```
28+
compile group: 'com.victorlaerte', name: 'jfx-asynctask', version: '1.0.1', ext: 'pom'
29+
```
30+
1531
Methods
1632
=========
1733

0 commit comments

Comments
 (0)