Segment_Client::flush PHP 메소드

flush() 공개 메소드

Flush any async consumers
public flush ( ) : boolean
리턴 boolean true if flushed successfully
    public function flush()
    {
        if (method_exists($this->consumer, 'flush')) {
            return $this->consumer->flush();
        }
        return true;
    }