resumability
noun
Resumability is the approach Qwik uses to resume an application in the browser from information saved during server rendering, without replaying all application logic.
Qwik uses resumability to resume an application in the browser with information from server rendering.
With server rendering, the server creates HTML for the browser. The Qwik documentation says Qwik stores information about interactions, components and application state in the HTML. The browser can use that information to continue without rerunning all component code during startup.
Here, resumability refers to Qwik's approach. With Glossary · In briefhydrationHydration is the process of connecting server-rendered HTML with client-side code and application state to make a page interactive.Read more, JavaScript connects the existing HTML to the client-side application.