All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.killbill.queue.dao.QueueSqlDao Maven / Gradle / Ivy

/*
 * Copyright 2010-2013 Ning, Inc.
 *
 * Ning licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package org.killbill.queue.dao;

import org.skife.jdbi.v2.sqlobject.Bind;
import org.skife.jdbi.v2.sqlobject.BindBean;
import org.skife.jdbi.v2.sqlobject.SqlBatch;
import org.skife.jdbi.v2.sqlobject.SqlQuery;
import org.skife.jdbi.v2.sqlobject.SqlUpdate;
import org.skife.jdbi.v2.sqlobject.customizers.Define;
import org.skife.jdbi.v2.sqlobject.mixins.CloseMe;
import org.skife.jdbi.v2.sqlobject.mixins.Transactional;

import javax.annotation.Nullable;
import java.util.Collection;
import java.util.Date;
import java.util.List;

@org.killbill.queue.dao.QueueSqlDaoStringTemplate
public interface QueueSqlDao extends Transactional>, CloseMe {

    @SqlQuery
    public Long resetLastInsertId();

    @SqlQuery
    public Long getLastInsertId();


    @SqlQuery
    public T getByRecordId(@Bind("recordId") Long id,
                           @Define("tableName") final String tableName);

    @SqlQuery
    public List getEntriesFromIds(@org.killbill.queue.dao.RecordIdCollectionBinder final List recordIds,
                                     @Define("tableName") final String tableName);

    @SqlQuery
    public List getReadyEntries(@Bind("now") Date now,
                                   @Bind("max") int max,
                                   // This is somewhat a hack, should really be a @Bind parameter but we also use it
                                   // for StringTemplate to modify the query based whether value is null or not.
                                   //
                                   @Nullable @Define("owner") String owner,
                                   @Define("tableName") final String tableName);

    @SqlUpdate
    public int claimEntry(@Bind("recordId") Long id,
                          @Bind("now") Date now,
                          @Bind("owner") String owner,
                          @Bind("nextAvailable") Date nextAvailable,
                          @Define("tableName") final String tableName);

    @SqlUpdate
    public int claimEntries(@org.killbill.queue.dao.RecordIdCollectionBinder final Collection recordIds,
                          @Bind("now") Date now,
                          @Bind("owner") String owner,
                          @Bind("nextAvailable") Date nextAvailable,
                          @Define("tableName") final String tableName);


    @SqlUpdate
    public int updateOnError(@Bind("recordId") Long id,
                             @Bind("now") Date now,
                             @Bind("errorCount") Long errorCount,
                             @Define("tableName") final String tableName);

    @SqlUpdate
    public void removeEntry(@Bind("recordId") Long id,
                            @Define("tableName") final String tableName);

    @SqlUpdate
    public void removeEntries(@org.killbill.queue.dao.RecordIdCollectionBinder final Collection recordIds,
                              @Define("tableName") final String tableName);

    @SqlUpdate
    public void insertEntry(@BindBean T evt,
                            @Define("tableName") final String tableName);

    @SqlUpdate
    public void insertEntryWithRecordId(@BindBean T evt,
                                        @Define("tableName") final String tableName);

    @SqlBatch
    public void insertEntriesWithRecordId(@BindBean Iterable evts,
                                          @Define("tableName") final String tableName);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy