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

org.postgresql.jdbc2.ArrayAssistantRegistry Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2004, PostgreSQL Global Development Group
 * See the LICENSE file in the project root for more information.
 */

package org.postgresql.jdbc2;

import org.checkerframework.checker.nullness.qual.Nullable;

import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;

/**
 * Array assistants register here.
 *
 * @author Minglei Tu
 */
public class ArrayAssistantRegistry {
  private static final ConcurrentMap ARRAY_ASSISTANT_MAP =
      new ConcurrentHashMap();

  public static @Nullable ArrayAssistant getAssistant(int oid) {
    return ARRAY_ASSISTANT_MAP.get(oid);
  }

  public static void register(int oid, ArrayAssistant assistant) {
    ARRAY_ASSISTANT_MAP.put(oid, assistant);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy