What do you think with this approach? Seems, simpler then return promise?
on the client, I just run this :
/** Overload method to execute the next process
*/
decodeSuccess(){
this.plot();
}
/** Overload method when getting error
*/
decodeError(e){
alert(e)
}
What do you think with this approach? Seems, simpler then return promise?
on the client, I just run this :