-
Notifications
You must be signed in to change notification settings - Fork 0
queue API methods list
Steve edited this page Apr 29, 2020
·
1 revision
listServer(path: string, options: IListOptions):void ~> Promise <IListData>
Reads files and/or directories from FSI Server and adds them to the batch content list of the queue.
listLocal(path: string, options: IListOptions):void ~> Promise <IListData>
Reads files and/or directories from a local directory and adds them to the batch content list of the queue.
See IListOptions for details on the options and how to filter entries in a list request.
Note: the methods above just add the commands to the queue. Execution starts when calling queue.run() or queue.runWithResults(). The ~> indicates the result type.
Documentation
-
Interfaces