blob: 6784725ecaf3862947978015745eb735e3f7fa79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
/**
* Ivy software bus package Enum helper utility, used to choose whether the
* callbacks will be performed in the same thread of the ivy protocol
* handling, or in the the Swing Thread, or in a newly created thread.
* @see Ivy.bindAsyncMsg
*
* @author Yannick Jestin <a
* href="mailto:yannick.jestin@enac.fr">yannick.jestin&enac.fr</a>
* @author <a href="http://www2.tls.cena.fr/products/ivy/">http://www.tls.cena.fr/products/ivy/</a>
*
* (c) CENA 1998-2004
* (c) ENAC 2005-2011
*
* CHANGELOG:
* 1.2.14
* introduced
*/
package fr.dgac.ivy;
public enum BindType {NORMAL, ASYNC, SWING }
|