service-model
Version:
An object oriented web service framework inspired by Windows Communication Foundation.
14 lines (13 loc) • 537 B
TypeScript
import { Message } from "../message";
import { DispatchOperation } from "./dispatchOperation";
import { DispatchEndpoint } from "./dispatchEndpoint";
import { EndpointDescription } from "../description/endpointDescription";
import { OperationSelector } from "./dispatchEndpoint";
/**
* @hidden
*/
export declare class RestOperationSelector implements OperationSelector {
private _operations;
constructor(description: EndpointDescription, endpoint: DispatchEndpoint);
selectOperation(message: Message): DispatchOperation;
}