Is there a possible way for me to set a timer for the client side to periodically make a request to the server automatically?
For example
Polling(){
this.http.makeRequestEvery1min(){
subscribe(data => {
)
}
//request should be every sent every 1 minute
}