#ifndef ANDROID_PDX_RPC_MESSAGE_BUFFER_H_ #define ANDROID_PDX_RPC_MESSAGE_BUFFER_H_ #include namespace android { namespace pdx { namespace rpc { // Utility type for thread-local buffers, providing suitable defaults for most // situations. Independent thread-local buffers may be created by using // different types for Slot -- ThreadLocalSlot, ThreadLocalTypedSlot and // ThreadLocalIndexedSlot provide utilities for building these types. template > using MessageBuffer = ThreadLocalBuffer; } // namespace rpc } // namespace pdx } // namespace android #endif // ANDROID_PDX_RPC_MESSAGE_BUFFER_H_