@javatypes/amqp-client
Version:
java amqp-client types
23 lines (22 loc) • 857 B
TypeScript
declare namespace com {
namespace rabbitmq {
namespace client {
namespace impl {
namespace nio {
/**
* Bridge between the byte buffer and stream worlds.
*/
// @ts-ignore
class SslEngineByteBufferOutputStream extends java.io.OutputStream {
// @ts-ignore
constructor(sslEngine: javax.net.ssl.SSLEngine, plainOut: java.nio.ByteBuffer, cypherOut: java.nio.ByteBuffer, channel: java.nio.channels.WritableByteChannel)
// @ts-ignore
public write(b: number /*int*/): void
// @ts-ignore
public flush(): void
}
}
}
}
}
}