Skip to main content

RecvStream

RecvStream opens up the read side of the passed CipherBox pipe. This method will block until a full message has been read as this is a message based pipe/stream abstraction.

Source: auctioneerrpc/hashmail.proto

gRPC

info

This is a server-streaming RPC

rpc RecvStream (CipherBoxDesc) returns (stream CipherBox);

Code Samples

const fs = require('fs');
const grpc = require('@grpc/grpc-js');
const protoLoader = require('@grpc/proto-loader');

const GRPC_HOST = 'localhost:12010'
const MACAROON_PATH = 'POOL_DIR/regtest/pool.macaroon'
const TLS_PATH = 'POOL_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('auctioneerrpc/hashmail.proto', loaderOptions);
const poolrpc = grpc.loadPackageDefinition(packageDefinition).poolrpc;
process.env.GRPC_SSL_CIPHER_SUITES = 'HIGH+ECDSA';
const tlsCert = fs.readFileSync(TLS_PATH);
const sslCreds = grpc.credentials.createSsl(tlsCert);
const macaroon = fs.readFileSync(MACAROON_PATH).toString('hex');
const macaroonCreds = grpc.credentials.createFromMetadataGenerator(function(args, callback) {
let metadata = new grpc.Metadata();
metadata.add('macaroon', macaroon);
callback(null, metadata);
});
let creds = grpc.credentials.combineChannelCredentials(sslCreds, macaroonCreds);
let client = new poolrpc.HashMail(GRPC_HOST, creds);
let request = {
stream_id: <bytes>,
};
let call = client.recvStream(request);
call.on('data', function(response) {
// A response was received from the server.
console.log(response);
});
call.on('status', function(status) {
// The current status of the stream.
});
call.on('end', function() {
// The server has closed the stream.
});
// Console output:
// {
// "desc": <CipherBoxDesc>,
// "msg": <bytes>,
// }

Messages

poolrpc.CipherBoxDesc

Source: auctioneerrpc/hashmail.proto

FieldgRPC TypeREST TypeREST Placement
stream_id
bytesunknownunknown

poolrpc.CipherBox

Source: auctioneerrpc/hashmail.proto

FieldgRPC TypeREST Type
desc
CipherBoxDescunknown
msg
bytesunknown

Nested Messages

poolrpc.CipherBoxDesc

FieldgRPC TypeREST Type
stream_id
bytesunknown