Skip to main content

ReservationNotificationStream

ReservationNotificationStream is a server side stream that sends notifications if the server wants to open a reservation to the client.

Source: swapserverrpc/reservation.proto

gRPC

info

This is a server-streaming RPC

rpc ReservationNotificationStream (ReservationNotificationRequest) returns (stream ServerReservationNotification);

Code Samples

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

const GRPC_HOST = 'localhost:11010'
const MACAROON_PATH = 'LOOP_DIR/regtest/loop.macaroon'
const TLS_PATH = 'LOOP_DIR/tls.cert'

const loaderOptions = {
keepCase: true,
longs: String,
enums: String,
defaults: true,
oneofs: true,
};
const packageDefinition = protoLoader.loadSync('swapserverrpc/reservation.proto', loaderOptions);
const looprpc = grpc.loadPackageDefinition(packageDefinition).looprpc;
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 looprpc.ReservationService(GRPC_HOST, creds);
let request = {};
let call = client.reservationNotificationStream(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:
// {
// "reservation_id": <bytes>,
// "value": <uint64>,
// "server_key": <bytes>,
// "expiry": <uint32>,
// "protocol_version": <ReservationProtocolVersion>,
// }

Messages

looprpc.ReservationNotificationRequest

Source: swapserverrpc/reservation.proto

note

This request has no parameters.

looprpc.ServerReservationNotification

Source: swapserverrpc/reservation.proto

FieldgRPC TypeREST Type
reservation_id
bytesunknown
value
uint64unknown
server_key
bytesunknown
expiry
uint32unknown
protocol_version
ReservationProtocolVersionunknown

Enums

looprpc.ReservationProtocolVersion

NameNumber
RESERVATION_NONE
0
RESERVATION_SERVER_NOTIFY
1