- General reqs
Who is the customer?
How and why they gonna use it?
Are they all from one country or from all over the world?
What are they using now to solve the problem?
How many customers we are expecting with simultanious interactions?
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function skipOne(): Promise<void> { | |
return new Promise(((resolve, reject) => { | |
setTimeout(resolve, 0) | |
})) | |
} | |
export class TaskManagerPromise<T> extends Promise<T> { |
OlderNewer