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

io.github.dehuckakpyt.telegrambot.repository.OffsetLimitPageable.kt Maven / Gradle / Ivy

There is a newer version: 0.11.4
Show newest version
package io.github.dehuckakpyt.telegrambot.repository

import org.springframework.data.domain.PageRequest
import org.springframework.data.domain.Sort


/**
 * Created on 03.01.2024.
 *

* * @author Denis Matytsin */ class OffsetLimitPageable(private val offset: Long, limit: Int) : PageRequest(offset.toInt(), limit, Sort.unsorted()) { override fun getOffset(): Long = offset }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy