1 2 3 4 5 6 7 8 9 10 11
12 package xdc.rov
13
14 /*!
15 * ======== ICallBack ========
16 * ROV tooling progress callback interface
17 */
18 metaonly interface ICallBack {
19
20 instance:
21
22 /*!
23 * ======== updateStartupProgress ========
24 * Progress update callback
25 *
26 * The ROV model calls this API at particular points to update any
27 * startup progress provided by the client ROV tooling.
28 */
29 Void updateStartupProgress(Int percent, String message);
30
31 /*!
32 * ======== getAbortFlag ========
33 */
34 Bool getAbortFlag();
35 }
36
37 38 39
40