Package com.netflix.server.context

Examples of com.netflix.server.context.DirectionAwareContextSerializer.serialize()


        DirectionAwareContextSerializer serializer = contextHolder.getSerializer();

        String data = contextHolder.hasSerialized()
                      ? contextHolder.getSerialized()
                      : serializer.serialize(contextHolder.getContext(), direction);

        if (null == data) {
            throw new ContextSerializationException("Serializer returned null for context name: " + contextHolder.getContextName());
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.