Пример #1
0
def mk_resp_msg(data, type, digit):
    msg = MapperRespMsg()
    msg.data = data
    msg.type_ = type
    msg.digit = digit
    return msg
def mk_resp_msg(data, type):
    msg = MapperRespMsg()
    msg.data = data
    msg.type_ = type
    return msg
Пример #3
0
def mk_resp_msg(data, type):
    msg = MapperRespMsg()
    msg.data = data
    msg.type_ = type
    return msg
def mk_resp_msg( data, type, digit ):
  msg       = MapperRespMsg()
  msg.data  = data
  msg.type_ = type
  msg.digit = digit
  return msg