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

org.wildfly.clustering.ejb.bean.BeanExpiration Maven / Gradle / Ivy

Go to download

A set of SPIs for managing distributable @Stateful bean instances for use by the the distributed Jakarta Enterprise Beans cache implementation found in the wildfly-ejb3 module. This module decouples the mechanism for managing @Stateful bean instances from the Jakarta Enterprise Beans subsystem.

There is a newer version: 33.0.2.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */

package org.wildfly.clustering.ejb.bean;

import java.time.Duration;

import org.wildfly.clustering.ee.expiration.Expiration;

/**
 * Encapsulates the expiration criteria for a bean.
 * Overrides the inherited semantics for zero timeout behavior.
 * @author Paul Ferraro
 */
public interface BeanExpiration extends Expiration {

    @Override
    default boolean isImmortal() {
        // EJB specification does not consider zero timeout to be immortal
        Duration timeout = this.getTimeout();
        return (timeout == null) || timeout.isNegative();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy