smartsocket/dist/smartsocket.classes.socketfunction.d.ts

47 lines
1.3 KiB
TypeScript
Raw Normal View History

2016-08-09 21:37:25 +00:00
/// <reference types="q" />
import * as plugins from "./smartsocket.plugins";
import { Objectmap } from "lik";
2016-08-07 16:59:39 +00:00
import { SocketRole } from "./smartsocket.classes.socketrole";
2016-08-09 21:37:25 +00:00
/**
* interface of the contructor options of class SocketFunction
*/
export interface ISocketFunctionConstructorOptions {
2016-08-09 21:37:25 +00:00
funcName: string;
funcDef: any;
allowedRoles: SocketRole[];
2016-08-09 09:42:21 +00:00
}
2016-08-09 21:37:25 +00:00
/**
* interface of the Socket Function call, in other words the object that routes a call to a function
2016-08-09 21:37:25 +00:00
*/
export interface ISocketFunctionCall {
funcName: string;
funcDataArg: any;
2016-08-07 16:59:39 +00:00
}
/**
* interface for function definition of SocketFunction
*/
export interface IFuncDef {
(dataArg: any): PromiseLike<any>;
}
export declare let allSocketFunctions: Objectmap<SocketFunction>;
2016-08-09 09:42:21 +00:00
/**
2016-08-09 21:37:25 +00:00
* class that respresents a function that can be transparently called using a SocketConnection
2016-08-09 09:42:21 +00:00
*/
2016-08-07 16:59:39 +00:00
export declare class SocketFunction {
name: string;
funcDef: IFuncDef;
2016-08-07 16:59:39 +00:00
roles: SocketRole[];
2016-08-09 09:42:21 +00:00
/**
* the constructor for SocketFunction
*/
constructor(optionsArg: ISocketFunctionConstructorOptions);
2016-08-09 09:42:21 +00:00
/**
* notifies a role about access to this SocketFunction
*/
2016-08-08 16:20:00 +00:00
private _notifyRole(socketRoleArg);
2016-08-09 09:42:21 +00:00
/**
* invokes the function of this SocketFunction
*/
invoke(dataArg: ISocketFunctionCall): plugins.q.Promise<any>;
2016-08-07 16:59:39 +00:00
}