mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-06-09 05:35:41 +00:00
implements: https://github.com/meilisearch/specifications/blob/develop/text/0060-refashion-updates-apis.md linked PR: - #1889 - #1891 - #1892 - #1902 - #1906 - #1911 - #1914 - #1915 - #1916 - #1918 - #1924 - #1925 - #1926 - #1930 - #1936 - #1937 - #1942 - #1944 - #1945 - #1946 - #1947 - #1950 - #1951 - #1957 - #1959 - #1960 - #1961 - #1962 - #1964 - https://github.com/meilisearch/milli/pull/414 - https://github.com/meilisearch/milli/pull/409 - https://github.com/meilisearch/milli/pull/406 - https://github.com/meilisearch/milli/pull/418 - close #1687 - close #1786 - close #1940 - close #1948 - close #1949 - close #1932 - close #1956
23 lines
385 B
Rust
23 lines
385 B
Rust
use chrono::{DateTime, Utc};
|
|
|
|
use super::{task::Task, task_store::Pending};
|
|
|
|
pub type BatchId = u32;
|
|
|
|
#[derive(Debug)]
|
|
pub struct Batch {
|
|
pub id: BatchId,
|
|
pub created_at: DateTime<Utc>,
|
|
pub tasks: Vec<Pending<Task>>,
|
|
}
|
|
|
|
impl Batch {
|
|
pub fn len(&self) -> usize {
|
|
self.tasks.len()
|
|
}
|
|
|
|
pub fn is_empty(&self) -> bool {
|
|
self.tasks.is_empty()
|
|
}
|
|
}
|