Skip to main content

ServiceWorkerContainerMethods

pub trait ServiceWorkerContainerMethods<D: DomTypes> {
    // Required methods
    fn GetController(&self) -> Option<DomRoot<D::ServiceWorker>>;
    fn Register(
        &self,
        realm: &mut CurrentRealm<'_>,
        scriptURL: USVString,
        options: &RegistrationOptions,
    ) -> <D::Promise as PromiseHelpers<D>>::StackRoot;
    fn GetRegistration(
        &self,
        realm: &mut CurrentRealm<'_>,
        clientURL: USVString,
    ) -> <D::Promise as PromiseHelpers<D>>::StackRoot;
}

Required Methods§

Source

fn GetController(&self) -> Option<DomRoot<D::ServiceWorker>>

Source

fn Register( &self, realm: &mut CurrentRealm<'_>, scriptURL: USVString, options: &RegistrationOptions, ) -> <D::Promise as PromiseHelpers<D>>::StackRoot

Source

fn GetRegistration( &self, realm: &mut CurrentRealm<'_>, clientURL: USVString, ) -> <D::Promise as PromiseHelpers<D>>::StackRoot

Implementors§