0.1.17 • Published 7 years ago

node-thrift-protocol v0.1.17

Weekly downloads
1
License
MIT
Repository
-
Last release
7 years ago

node-thrift-protocol

An implementation of thrift-protocol with node.

Demo

let Thrift = require('node-thrift-protocol');

/* Server */

let server = Thrift.createServer(thrift => {
  thrift.on('data', message => {
    let { name, id, type } = message;
    thrift.write({
      name,
      id,
      type: 'REPLY',
      fields: [
        { id: 0, type: 'BOOL', value: true }
      ]
    });
  });
}).listen(8101);


/* Client */

let thrift = Thrift.connect({
  port: 8101,
  host: '127.0.0.1'
});

thrift.write({
  name: 'ping',
  type: 'CALL',
  id: 1
});

thrift.on('data', message => {
  let { id, name, type, fields } = message;
  fields.forEach(item => {
    let { id, type, value } = item;
  });
});

Usage

class Thrift extends stream.Duplex { ... }

This class is used to crate a thrift or local server.

Thrift.createServer(options);

Creates a new server. The connectionListener argument is automatically set as a listener for the 'connection' event.

options is an object as net.createServer in net module.

returns socket.

Thrift.connect(options, callback);

Opens the connection for a given socket.

options is an object as net.connect in net module.

return thrift.

new Thrift(socket);

Construct a new thrift object with a socket.

Protocol

thrift-protocol.txt

0.1.17

7 years ago

0.1.16

7 years ago

0.1.15

8 years ago

0.1.14

8 years ago

0.1.13

8 years ago

0.1.12

8 years ago

0.1.11

8 years ago

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago