ray/src/common/object_info.h
Stephanie Wang d729f9b7ea Object table remove (#139)
* 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
2016-12-19 23:18:57 -08:00

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