Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
ulixee
GitHub Repository: ulixee/secret-agent
Path: blob/main/client/interfaces/IConnectionToCoreOptions.ts
1028 views
1
import ICoreConfigureOptions from '@secret-agent/interfaces/ICoreConfigureOptions';
2
3
export default interface IConnectionToCoreOptions
4
extends Omit<ICoreConfigureOptions, 'maxConcurrentAgentsCount'> {
5
host?: string | Promise<string>;
6
maxConcurrency?: number;
7
agentTimeoutMillis?: number;
8
isPersistent?: boolean; // variable to tell server to keep around connection. Defaults to true
9
}
10
11