Efl.ThreadIO.call_sync

Description

Executes a method on a different thread, synchronously. This call will not return until the method finishes and its return value can be recovered.

Signature

call_sync @pure_virtual {
    params {
        @in func: EflThreadIOCallSync;
    }
    return: void_ptr;
}

C signature

void *efl_threadio_call_sync(Eo *obj, EflThreadIOCallSync func);

Parameters

  • func (in) - The method to execute synchronously.

Implemented by