mirror of
https://github.com/vale981/ray
synced 2025-03-13 06:36:39 -04:00

* Object table remove redis module * Test case for object table remove redis module * Client code for object_table_remove * Delete object notifications in plasma * Test for object deletion notifications * Fix subscribe deletion test * Address Robert's comments * free hash table entry
21 lines
339 B
C
21 lines
339 B
C
#ifndef OBJECT_H
|
|
#define OBJECT_H
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "common.h"
|
|
|
|
/**
|
|
* Object information data structure.
|
|
*/
|
|
typedef struct {
|
|
object_id obj_id;
|
|
int64_t data_size;
|
|
int64_t metadata_size;
|
|
int64_t create_time;
|
|
int64_t construct_duration;
|
|
unsigned char digest[DIGEST_SIZE];
|
|
bool is_deletion;
|
|
} object_info;
|
|
|
|
#endif
|