FIX::NullStoreFactory Class Reference

Null implementation of MessageStore. More...

#include <NullStore.h>

Inheritance diagram for FIX::NullStoreFactory:
Collaboration diagram for FIX::NullStoreFactory:

Public Member Functions

MessageStorecreate (const SessionID &)
void destroy (MessageStore *)
Public Member Functions inherited from FIX::MessageStoreFactory
virtual ~MessageStoreFactory ()

Detailed Description

Null implementation of MessageStore.

Will not actually store messages. Useful for admin-only or market data-only applications.

Definition at line 43 of file NullStore.h.

Member Function Documentation

◆ create()

MessageStore * FIX::NullStoreFactory::create ( const SessionID & )
virtual

Implements FIX::MessageStoreFactory.

Definition at line 31 of file NullStore.cpp.

32{
33 return new NullStore();
34}

◆ destroy()

void FIX::NullStoreFactory::destroy ( MessageStore * pStore)
virtual

Implements FIX::MessageStoreFactory.

Definition at line 36 of file NullStore.cpp.

37{
38 delete pStore;
39}

The documentation for this class was generated from the following files:

Generated on for QuickFIX by doxygen 1.15.0 written by Dimitri van Heesch, © 1997-2001