DEV Community

L444 Mobile Game
L444 Mobile Game

Posted on

API Timeout Design: Client কতক্ষণ অপেক্ষা করবে?

Infinite wait ভালো UX নয়।

Fetch request AbortController দিয়ে cancel করা যায়।

const controller = new AbortController();
setTimeout(() => controller.abort(), 8000);

fetch("/api/data", { signal: controller.signal });
Enter fullscreen mode Exit fullscreen mode

Timeout value endpoint type অনুযায়ী আলাদা হতে পারে। Fast read endpoint short timeout নিতে পারে, file processing async job হতে পারে।

AI assistance disclosure: Draft তৈরিতে AI সহায়তা ব্যবহার করা হয়েছে। Timeout values নিজের backend SLA অনুযায়ী tune করুন।

https://www.l444mobilegame.com/

Top comments (0)