baffelli / pyperator

Simple python workflow engine based on asyncio and a DAG structure.
MIT License
55 stars 7 forks source link

Add connection status #10

Closed baffelli closed 7 years ago

baffelli commented 7 years ago

If the port is not connected, the packet should just be dropped instead of awaiting forever:

async def send(packet):
   if self.connected:
    #normal send
   else
     return
baffelli commented 7 years ago

Closed in 2d16bb6