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

com.tangosol.coherence.config.xml.processor.BufferTypeProcessor Maven / Gradle / Ivy

/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.coherence.config.xml.processor;

import com.tangosol.config.ConfigurationException;
import com.tangosol.config.xml.ElementProcessor;
import com.tangosol.config.xml.ProcessingContext;
import com.tangosol.config.xml.XmlSimpleName;

import com.tangosol.internal.net.service.peer.acceptor.TcpAcceptorDependencies;

import com.tangosol.run.xml.XmlElement;

/**
 * An {@link ElementProcessor} for the <buffer-type> Cache Configuration
 * element.
 *
 * @author bo  2013.07.10
 */
@XmlSimpleName("buffer-type")
public class BufferTypeProcessor
        implements ElementProcessor
    {
    /**
     * {@inheritDoc}
     */
    @Override
    public Integer process(ProcessingContext context, XmlElement xmlElement)
            throws ConfigurationException
        {
        String sType = xmlElement.getString().trim();

        return sType.equalsIgnoreCase("heap")
               ? TcpAcceptorDependencies.BufferPoolConfig.TYPE_HEAP
               : TcpAcceptorDependencies.BufferPoolConfig.TYPE_DIRECT;
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy