carson welsh
carson welsh

Reputation: 1688

Does Ruby have an equivalent of Python's twisted framework as a networking abstraction layer?

From my understanding, Python's twisted framework provides a higher-level abstraction for networking communications (?).

I am looking for a Ruby equivalent of twisted to use in a Rails application.

Upvotes: 6

Views: 2186

Answers (1)

Pafjo
Pafjo

Reputation: 5019

Take a look at EventMachine. It's not as extensive as Twisted but it's built around the same concepts of event-driven network programming.

Upvotes: 7

Related Questions