| 148 | } |
| 149 | |
| 150 | export interface ExecutionOptions { |
| 151 | getCaptureStackTrace(): boolean; |
| 152 | |
| 153 | getConsistency(): types.consistencies; |
| 154 | |
| 155 | getCustomPayload(): { [key: string]: any }; |
| 156 | |
| 157 | getFetchSize(): number; |
| 158 | |
| 159 | getFixedHost(): Host; |
| 160 | |
| 161 | getHints(): string[] | string[][]; |
| 162 | |
| 163 | isAutoPage(): boolean; |
| 164 | |
| 165 | isBatchCounter(): boolean; |
| 166 | |
| 167 | isBatchLogged(): boolean; |
| 168 | |
| 169 | isIdempotent(): boolean; |
| 170 | |
| 171 | isPrepared(): boolean; |
| 172 | |
| 173 | isQueryTracing(): boolean; |
| 174 | |
| 175 | getKeyspace(): string; |
| 176 | |
| 177 | getLoadBalancingPolicy(): policies.loadBalancing.LoadBalancingPolicy; |
| 178 | |
| 179 | getPageState(): Buffer; |
| 180 | |
| 181 | getRawQueryOptions(): QueryOptions; |
| 182 | |
| 183 | getReadTimeout(): number; |
| 184 | |
| 185 | getRetryPolicy(): policies.retry.RetryPolicy; |
| 186 | |
| 187 | getRoutingKey(): Buffer | Buffer[]; |
| 188 | |
| 189 | getSerialConsistency(): types.consistencies; |
| 190 | |
| 191 | getTimestamp(): number | Long | undefined | null; |
| 192 | |
| 193 | setHints(hints: string[]): void; |
| 194 | } |
| 195 | |
| 196 | export interface ClientOptions { |
| 197 | contactPoints?: string[]; |
no outgoing calls
no test coverage detected