0

I am reading some thrift service code and found a lot of names like this:

async_eb_function_name(...) or async_tm_function_name(...)

What are they? It seems to me the prefix: async_eb_ and async_tm_ are both auto added. What are they and what's the difference?

WhatABeautifulWorld
  • 3,198
  • 3
  • 22
  • 30

1 Answers1

1

That's from the Python-version of the generator.

EB seems to mean "event based" and "TM" ... well, not 100% sure, but some other code in that same file seems to indicate that "T" might stand for "thread".

References:

JensG
  • 13,148
  • 4
  • 45
  • 55