(encoder, streamId)
| 394 | } |
| 395 | |
| 396 | write(encoder, streamId) { |
| 397 | const frameWriter = new FrameWriter(types.opcodes.credentials); |
| 398 | frameWriter.writeStringMap({ username:this.username, password:this.password }); |
| 399 | return frameWriter.write(encoder.protocolVersion, streamId); |
| 400 | } |
| 401 | } |
| 402 | |
| 403 | class BatchRequest extends Request { |
nothing calls this directly
no test coverage detected