/**
  * Declares an association between this object and a CcTimestamp object.
  *
  * @param      CcTimestamp $v
  * @return     CcListenerCount The current object (for fluent API support)
  * @throws     PropelException
  */
 public function setCcTimestamp(CcTimestamp $v = null)
 {
     if ($v === null) {
         $this->setDbTimestampId(NULL);
     } else {
         $this->setDbTimestampId($v->getDbId());
     }
     $this->aCcTimestamp = $v;
     // Add binding for other direction of this n:n relationship.
     // If this object has already been added to the CcTimestamp object, it will not be re-added.
     if ($v !== null) {
         $v->addCcListenerCount($this);
     }
     return $this;
 }
 /**
  * Filter the query by a related CcTimestamp object
  *
  * @param     CcTimestamp $ccTimestamp  the related object to use as filter
  * @param     string $comparison Operator to use for the column comparison, defaults to Criteria::EQUAL
  *
  * @return    CcListenerCountQuery The current query, for fluid interface
  */
 public function filterByCcTimestamp($ccTimestamp, $comparison = null)
 {
     return $this->addUsingAlias(CcListenerCountPeer::TIMESTAMP_ID, $ccTimestamp->getDbId(), $comparison);
 }
 /**
  * Exclude object from result
  *
  * @param     CcTimestamp $ccTimestamp Object to remove from the list of results
  *
  * @return    CcTimestampQuery The current query, for fluid interface
  */
 public function prune($ccTimestamp = null)
 {
     if ($ccTimestamp) {
         $this->addUsingAlias(CcTimestampPeer::ID, $ccTimestamp->getDbId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }
 /**
  * Adds an object to the instance pool.
  *
  * Propel keeps cached copies of objects in an instance pool when they are retrieved
  * from the database.  In some cases -- especially when you override doSelect*()
  * methods in your stub classes -- you may need to explicitly add objects
  * to the cache in order to ensure that the same objects are always returned by doSelect*()
  * and retrieveByPK*() calls.
  *
  * @param      CcTimestamp $value A CcTimestamp object.
  * @param      string $key (optional) key to use for instance map (for performance boost if key was already calculated externally).
  */
 public static function addInstanceToPool(CcTimestamp $obj, $key = null)
 {
     if (Propel::isInstancePoolingEnabled()) {
         if ($key === null) {
             $key = (string) $obj->getDbId();
         }
         // if key === null
         self::$instances[$key] = $obj;
     }
 }