blob: 24f800839389dc9d3b28920a5513d05b175e0d33 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
export class QueueUtils {
private executionQueue:any;
constructor(private $q:ng.IQService) {
this.executionQueue = this.getDummyPromise();
}
private getDummyPromise = ():ng.IPromise<boolean> => {
let deferred:ng.IDeferred<boolean> = this.$q.defer();
deferred.resolve(true);
return deferred.promise;
};
private addMethodToQueue = (runMe:Function):void => {
this.executionQueue = this.executionQueue.then(runMe, runMe);
};
addNonBlockingUIAction = (update:Function, releaseUIcallBack:Function):void => {
releaseUIcallBack();
this.addMethodToQueue(update);
};
// The Method call is responsible for releasing the UI
addBlockingUIAction = (blockingServerRequest:Function):void => {
this.addMethodToQueue(blockingServerRequest);
};
addBlockingUIActionWithReleaseCallback = (blockingServerRequest:Function, releaseUIcallBack:Function):void=> {
this.addMethodToQueue(blockingServerRequest);
this.addMethodToQueue(releaseUIcallBack);
};
}
|