Ejemplo n.º 1
0
from pytools import run_async

def print_new(store):
    out = store.read_new().strip()
    if out:
        print out

run_async("./async_infinite.sh",
          timeout=5,
          handler=print_new)
Ejemplo n.º 2
0
from pytools import run_async

def print_new(store):
    out = store.read_new().strip()
    if out:
        print out

run_async("./async.sh",
          handler=print_new)
Ejemplo n.º 3
0
from pytools import run_async


def print_new(store):
    out = store.read_new().strip()
    if out:
        print out


run_async("./async_infinite.sh", timeout=5, handler=print_new)