Segment_Consumer::ssl PHP Method

ssl() protected method

Check whether we should connect to the API using SSL. This is enabled by default with connections which make batching requests. For connections which can save on round-trip times, you may disable it.
protected ssl ( ) : boolean
return boolean
    protected function ssl()
    {
        return isset($this->options["ssl"]) ? $this->options["ssl"] : true;
    }