Skip to content

malijs/mali-call-types

Folders and files

NameName
Last commit message
Last commit date

Latest commit

cae0ec3 · Feb 19, 2021

History

15 Commits
Dec 27, 2016
Feb 19, 2021
Dec 27, 2016
Dec 19, 2018
Dec 19, 2018
Feb 19, 2021
Feb 19, 2021

Repository files navigation

@malijs/call-types

Example

const CallType = require('@malijs/call-types')
console.log(CallType.DUPLEX)

Example (Within Mali call handler)

if(ctx.type === CallType.UNARY) {
  console.log('Unary call')
}

@malijs/call-types.UNARY

Unary call

Kind: static property of @malijs/call-types

@malijs/call-types.REQUEST_STREAM

Request is a stream

Kind: static property of @malijs/call-types

@malijs/call-types.RESPONSE_STREAM

Response is a stream

Kind: static property of @malijs/call-types

@malijs/call-types.DUPLEX

Duplex call where both request and response are streams

Kind: static property of @malijs/call-types