Skip to content

Commit

Permalink
fix: client adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
ChoGathK committed Oct 14, 2022
1 parent 2324270 commit a4af45b
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/common/interface/client.ts
Expand Up @@ -21,6 +21,14 @@ export interface IClientAdapter<T = any, C = any> {
* @publicApi
*/
create: (config: C) => void | Promise<void>;
/**
* Redeploy the client instance.
*
* @param config C The configuration of client instance
*
* @publicApi
*/
redeploy: (config: C) => void | Promise<void>;
}

export interface IClientMediator<T = any, C = any> extends IConfigSubscriber {
Expand Down

0 comments on commit a4af45b

Please sign in to comment.