Angular 4 : How to use await/async within subscribe
You need the async
keyword to mark the function as "async":
this.subscribe_table = this.com_table.Receive().subscribe(async res => {
await this.SaveTableAsync(res.data);
this.ReadTableAsync();
});