當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript common.GlobalProviders類代碼示例

本文整理匯總了TypeScript中@tsed/common.GlobalProviders的典型用法代碼示例。如果您正苦於以下問題:TypeScript GlobalProviders類的具體用法?TypeScript GlobalProviders怎麽用?TypeScript GlobalProviders使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了GlobalProviders類的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。

示例1:

/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
import {GlobalProviders, Provider, TypedProvidersRegistry} from "@tsed/common";

export const PROVIDER_TYPE_PROTOCOL = "protocol";
/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
// tslint:disable-next-line: variable-name
export const ProtocolRegistry: TypedProvidersRegistry = GlobalProviders.createRegistry(PROVIDER_TYPE_PROTOCOL, Provider, {
  injectable: true,
  buildable: true
});
/**
 * Add a new service in the `ProviderRegistry`. This service will be built when `InjectorService` will be loaded.
 *
 * #### Example
 *
 * ```typescript
 * import {registerSocketService, InjectorService} from "@tsed/common";
 *
 * export default class MyFooService {
 *     constructor(){}
 *     getFoo() {
 *         return "test";
 *     }
 * }
 *
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:31,代碼來源:ProtocolRegistries.ts

示例2:

/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
import {GlobalProviders, Provider, TypedProvidersRegistry} from "@tsed/common";

export const PROVIDER_TYPE_RESOLVER_SERVICE = "graphQLResolverService";

/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
// tslint:disable-next-line: variable-name
export const ResolverServiceRegistry: TypedProvidersRegistry = GlobalProviders.createRegistry(PROVIDER_TYPE_RESOLVER_SERVICE, Provider, {
  injectable: true,
  buildable: true
});
/**
 * Add a new service in the `ProviderRegistry`. This service will be built when `InjectorService` will be loaded.
 *
 * #### Example
 *
 * ```typescript
 * import {registerResolverService, InjectorService} from "@tsed/graphql";
 *
 * export default class MyFooService {
 *     constructor(){}
 *     getFoo() {
 *         return "test";
 *     }
 * }
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:31,代碼來源:ResolverServiceRegistry.ts

示例3:

/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
import {GlobalProviders, Provider, TypedProvidersRegistry} from "@tsed/common";

export const PROVIDER_TYPE_MONGOOSE_MODEL = "mongooseModel";
// tslint:disable-next-line: variable-name
export const MongooseModelRegistry: TypedProvidersRegistry = GlobalProviders.createRegistry(PROVIDER_TYPE_MONGOOSE_MODEL, Provider, {
  injectable: true,
  buildable: false
});

/**
 * Add a new model in the `ProviderRegistry`.
 * This model will be built when `InjectorService` will be loaded.
 *
 * #### Example
 *
 * ```typescript
 * import {registerModel, InjectorService} from "@tsed/common";
 *
 * export default class MyModel {
 *     constructor(){}
 *     getFoo() {
 *         return "test";
 *     }
 * }
 *
 * registerModel({provide: MyModel});
 * // or
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:31,代碼來源:MongooseModelRegistry.ts

示例4:

/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
import {GlobalProviders, Provider, TypedProvidersRegistry} from "@tsed/common";

export const PROVIDER_TYPE_SOCKET_SERVICE = "socketService";
/**
 *
 * @type {Registry<Provider<any>, IProvider<any>>}
 */
// tslint:disable-next-line: variable-name
export const SocketServiceRegistry: TypedProvidersRegistry = GlobalProviders.createRegistry(PROVIDER_TYPE_SOCKET_SERVICE, Provider, {
  injectable: true,
  buildable: true
});
/**
 * Add a new service in the `ProviderRegistry`. This service will be built when `InjectorService` will be loaded.
 *
 * #### Example
 *
 * ```typescript
 * import {registerSocketService, InjectorService} from "@tsed/common";
 *
 * export default class MyFooService {
 *     constructor(){}
 *     getFoo() {
 *         return "test";
 *     }
 * }
 *
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:31,代碼來源:SocketServiceRegistry.ts

示例5: before

  before(() => {
    this.serviceStub = Sinon.stub(GlobalProviders.getRegistry(ProviderType.SERVICE), "merge");

    Service()(Test);
  });
開發者ID:Romakita,項目名稱:ts-express-decorators,代碼行數:5,代碼來源:service.spec.ts


注:本文中的@tsed/common.GlobalProviders類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。