EV-Gearman

 view release on metacpan or  search on metacpan

src/EV__Gearman.xs  view on Meta::CPAN

CODE:
    RETVAL = self->active_count_cached;
OUTPUT:
    RETVAL

# Internal: current (read, write) buffer capacities in bytes. Used by
# the test suite to assert that oversized buffers are released after a
# large packet drains. Not part of the public API.
void
_buf_caps(EV::Gearman self)
PPCODE:
{
    EXTEND(SP, 2);
    mPUSHu(self->rbuf_cap);
    mPUSHu(self->wbuf_cap);
}

# Internal: number of live EV::Gearman::Job objects holding a tombstone
# reference on this connection. Used by the test suite to assert that
# dispatched-then-dropped jobs accumulate nothing. Not public API.
int



( run in 2.658 seconds using v1.01-cache-2.11-cpan-4e7a2411597 )