Sandip
Sandip
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
@peculiarnewbie any suggestion will be helpful. and thank you
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
No description
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
No description
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
/**
* Get batch workflow step response via long polling
* @param batchId The batch ID to monitor
* @param responseKey The UUID response key
* @returns Observable that emits workflow step response updates
*/
getProductBatchWorkflowStepResponse(responseKey: string, batchId?: number, ): Observable<any> {
const endpoint = 'ProductionCycle/WorkflowEvent/GetProductBatchWorkflowStepResponse';

const queryParams: any = { responseKey };

if (batchId !== undefined) {
queryParams.batchId = batchId.toString();
}

return this.startPolling(endpoint, queryParams);
}

}
/**
* Get batch workflow step response via long polling
* @param batchId The batch ID to monitor
* @param responseKey The UUID response key
* @returns Observable that emits workflow step response updates
*/
getProductBatchWorkflowStepResponse(responseKey: string, batchId?: number, ): Observable<any> {
const endpoint = 'ProductionCycle/WorkflowEvent/GetProductBatchWorkflowStepResponse';

const queryParams: any = { responseKey };

if (batchId !== undefined) {
queryParams.batchId = batchId.toString();
}

return this.startPolling(endpoint, queryParams);
}

}
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
/**
* Stop the current polling
*/
stopPolling(): void {
this.stopPolling$.next();
}

/**
* Make a single long polling request with GET
*/
private makePollingRequest<T>(url: string, queryParams?: Record<string, string>): Observable<T> {
let params = new HttpParams();

if (queryParams) {
Object.keys(queryParams).forEach(key => {
params = params.set(key, queryParams[key]);
});
}

return this.http.get<T>(url, {
params: params
}).pipe(
timeout(this.connectionTimeout),
tap((response: T) => console.log('Polling response received:', response)),
catchError((error: any) => {
console.error('Polling error:', error);
return throwError(() => error);
})
);
}
/**
* Stop the current polling
*/
stopPolling(): void {
this.stopPolling$.next();
}

/**
* Make a single long polling request with GET
*/
private makePollingRequest<T>(url: string, queryParams?: Record<string, string>): Observable<T> {
let params = new HttpParams();

if (queryParams) {
Object.keys(queryParams).forEach(key => {
params = params.set(key, queryParams[key]);
});
}

return this.http.get<T>(url, {
params: params
}).pipe(
timeout(this.connectionTimeout),
tap((response: T) => console.log('Polling response received:', response)),
catchError((error: any) => {
console.error('Polling error:', error);
return throwError(() => error);
})
);
}
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
import { Injectable } from '@angular/core';
import {catchError, Observable, Subject, switchMap, takeUntil, tap, throwError, timeout, timer} from 'rxjs';
import {HttpClient, HttpParams} from '@angular/common/http';

@Injectable({
providedIn: 'root'
})
export class LongPollingService {
private baseUrl = 'https://localhost:44311/api/services';
private stopPolling$ = new Subject<void>();
private pollingInterval = 10000; // Retry interval if connection fails or times out
private connectionTimeout = 60000; // 1 minute timeout for each polling request

constructor(private http: HttpClient) { }

/**
* Start long polling for updates with GET request
* @param endpoint The API endpoint path
* @param queryParams Optional query parameters
* @returns Observable that emits server updates
*/
startPolling<T>(endpoint: string, queryParams?: Record<string, string>): Observable<T> {
// Create full URL
const url = `${this.baseUrl}/${endpoint}`;

// Reset any existing polling
this.stopPolling();

// Start polling with interval retry for connection issues
return timer(0, this.pollingInterval).pipe(
switchMap(() => this.makePollingRequest<T>(url, queryParams)),
takeUntil(this.stopPolling$)
);
}
import { Injectable } from '@angular/core';
import {catchError, Observable, Subject, switchMap, takeUntil, tap, throwError, timeout, timer} from 'rxjs';
import {HttpClient, HttpParams} from '@angular/common/http';

@Injectable({
providedIn: 'root'
})
export class LongPollingService {
private baseUrl = 'https://localhost:44311/api/services';
private stopPolling$ = new Subject<void>();
private pollingInterval = 10000; // Retry interval if connection fails or times out
private connectionTimeout = 60000; // 1 minute timeout for each polling request

constructor(private http: HttpClient) { }

/**
* Start long polling for updates with GET request
* @param endpoint The API endpoint path
* @param queryParams Optional query parameters
* @returns Observable that emits server updates
*/
startPolling<T>(endpoint: string, queryParams?: Record<string, string>): Observable<T> {
// Create full URL
const url = `${this.baseUrl}/${endpoint}`;

// Reset any existing polling
this.stopPolling();

// Start polling with interval retry for connection issues
return timer(0, this.pollingInterval).pipe(
switchMap(() => this.makePollingRequest<T>(url, queryParams)),
takeUntil(this.stopPolling$)
);
}
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
and here is the code that i am using for polling
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
so i don't if this is the problem of the frontend or api
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 3/28/2025 in #questions
How to optimize polling in frontend???
i am using long polling and the request are hitting the server but the server is sending 404 not found but after 5-6 request server send a 200 request with all the data
12 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/10/2025 in #questions
How to send messages to large number of people and is there ways for doing it
Ok I will read about it 🤕🤕
16 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/10/2025 in #questions
How to send messages to large number of people and is there ways for doing it
Company won't move to 2nd option
16 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/10/2025 in #questions
How to send messages to large number of people and is there ways for doing it
Mssql
16 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/10/2025 in #questions
How to send messages to large number of people and is there ways for doing it
It's from Microsoft
16 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/10/2025 in #questions
How to send messages to large number of people and is there ways for doing it
I am using SQL server
16 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/3/2025 in #questions
Is it necessary to have backend to upload pdfs, in uploadthing ???
Yeah I am just trying to save the link in the backend
10 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/3/2025 in #questions
Is it necessary to have backend to upload pdfs, in uploadthing ???
thanks
10 replies
TTCTheo's Typesafe Cult
Created by Sandip on 1/3/2025 in #questions
Is it necessary to have backend to upload pdfs, in uploadthing ???
thanks
10 replies
TTCTheo's Typesafe Cult
Created by Sandip on 7/2/2024 in #questions
Can i use uploadthing with dotnet core api ???
@Antonio (Eingin) thanks man. I will give it a try
4 replies