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

org.gradle.internal.state.Managed Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.gradle.internal.state;

import javax.annotation.Nullable;

/**
 * Implemented by types whose state is fully managed by Gradle. Mixed into generated classes whose state is fully managed.
 */
public interface Managed {
    /**
     * Returns a snapshot of the current state of this object. This can be passed to the {@link ManagedFactory#fromState(Class, Object)} method to recreate this object from the snapshot.
     * Note that the state may not be immutable, so should be made isolated to reuse in another context. The state can also be fingerprinted to generate a fingerprint of this object.
     *
     * 

Note that currently the state should reference only JVM and core Gradle types when {@link #isImmutable()} returns true.

*/ @Nullable Object unpackState(); /** * Is this object graph immutable? Returns false if this object may be mutable, in which case the state should be unpacked and isolated. */ boolean isImmutable(); /** * Returns the public type of this managed instance. Currently is used to identify the implementation. */ Class publicType(); /** * Returns the id of a factory that can be used to create new instances of this type. */ int getFactoryId(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy