Skip to main content
This release is 5 versions behind 1.0.2 — the latest version of @fedify/fedify. Jump to latest

Built and signed on GitHub Actions

An ActivityPub/fediverse server framework

This package works with Node.js, Deno, Bun
This package works with Node.js
This package works with Deno
This package works with Bun
JSR Score
100%
Published
a month ago (0.15.0)
method Federation.setObjectDispatcher
Federation.setObjectDispatcher<
TObject extends Object,
TParam extends string,
>
(
cls: (new (...args: any[]) => TObject) & { typeId: URL; },
path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`,
dispatcher: ObjectDispatcher<TContextData, TObject, TParam>,
): ObjectCallbackSetters<TContextData, TObject, TParam>

Registers an object dispatcher.

Type Parameters

TObject extends Object

The type of object to dispatch.

TParam extends string

The parameter names of the requested URL.

Parameters

cls: (new (...args: any[]) => TObject) & { typeId: URL; }

The Activity Vocabulary class of the object to dispatch.

path: `${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}{${TParam}}${string}`

The URI path pattern for the object dispatcher. The syntax is based on URI Template (RFC 6570). The path must have one or more variables.

dispatcher: ObjectDispatcher<TContextData, TObject, TParam>

An object dispatcher callback to register.

Return Type

Add Package

deno add jsr:@fedify/fedify

Import symbol

import { type Federation } from "@fedify/fedify/federation";

---- OR ----

Import directly with a jsr specifier

import { type Federation } from "jsr:@fedify/fedify/federation";

Add Package

npx jsr add @fedify/fedify

Import symbol

import { type Federation } from "@fedify/fedify/federation";

Add Package

yarn dlx jsr add @fedify/fedify

Import symbol

import { type Federation } from "@fedify/fedify/federation";

Add Package

pnpm dlx jsr add @fedify/fedify

Import symbol

import { type Federation } from "@fedify/fedify/federation";

Add Package

bunx jsr add @fedify/fedify

Import symbol

import { type Federation } from "@fedify/fedify/federation";