org.dataloader.CacheKey Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-dataloader Show documentation
Show all versions of java-dataloader Show documentation
A pure Java 8 port of Facebook Dataloader
/*
* Copyright (c) 2016 The original author or authors
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Apache License v2.0 which accompanies this distribution.
*
* The Eclipse Public License is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* The Apache License v2.0 is available at
* http://www.opensource.org/licenses/apache2.0.php
*
* You may elect to redistribute this code under either of these licenses.
*/
package org.dataloader;
/**
* Function that is invoked on input keys of type {@code K} to derive keys that are required by the {@link CacheMap}
* implementation.
*
* @param type parameter indicating the type of the input key
*
* @author Arnold Schrijver
*/
@FunctionalInterface
public interface CacheKey {
/**
* Returns the cache key that is created from the provided input key.
*
* @param input the input key
*
* @return the cache key
*/
Object getKey(K input);
/**
* Returns the cache key that is created from the provided input key and context.
*
* @param input the input key
*
* @param context the context
*
* @return the cache key
*/
default Object getKeyWithContext(K input, Object context) {
return getKey(input);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy