Skip to content

102 Processing

Used mainly in WebDAV. It tells the client ‘I got your request and I’m working on it, don’t time out just yet!’

Rare outside of WebDAV. Use it when an operation will take a very long time, and you want to tell the client ‘I am still working on it, please do not close the connection’.

import { HttpCode, get } from 'shokupan';
export const getResource = get('/resource', () => {
return { message: 'Processing' };
}).pipe(HttpCode(102));