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

com.hazelcast.map.EventData Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
package com.hazelcast.map;

import com.hazelcast.nio.Address;
import com.hazelcast.nio.serialization.DataSerializable;

/**
 * General contract for map event data.
 */
public interface EventData extends DataSerializable {

    String getSource();

    String getMapName();

    Address getCaller();

    int getEventType();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy