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

com.codingapi.springboot.framework.domain.IDomain Maven / Gradle / Ivy

There is a newer version: 3.3.12
Show newest version
package com.codingapi.springboot.framework.domain;

import com.codingapi.springboot.framework.domain.event.DomainDeleteEvent;
import com.codingapi.springboot.framework.domain.event.DomainPersistEvent;
import com.codingapi.springboot.framework.event.EventPusher;

/**
 * 领域对象事件
 */
public interface IDomain  {

    /**
     * 持久化事件
     */
    default void persist(){
        EventPusher.push(new DomainPersistEvent(this));
    }

    /**
     * 删除事件
     */
    default void delete(){
        EventPusher.push(new DomainDeleteEvent(this));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy