src/Configuration.h
branchv_0
changeset 1 27c11cea34de
parent 0 e5d547ab0c51
child 3 3891db9e45b7
equal deleted inserted replaced
0:e5d547ab0c51 1:27c11cea34de
    27 namespace zeromq {
    27 namespace zeromq {
    28 
    28 
    29 class Configuration {
    29 class Configuration {
    30 public:
    30 public:
    31 
    31 
       
    32 	relpipe::common::type::StringX relation = L"message";
    32 	relpipe::common::type::Integer messageCount = 1;
    33 	relpipe::common::type::Integer messageCount = 1;
    33 	relpipe::common::type::StringX relation = L"zeromq";
    34 	relpipe::common::type::StringX endpointUrl = L"tcp://*:1234";
    34 	relpipe::common::type::StringX queue = L"/relpipe";
       
    35 	relpipe::common::type::Boolean unlinkOnClose = false;
       
    36 
    35 
    37 	virtual ~Configuration() {
    36 	virtual ~Configuration() {
    38 	}
    37 	}
    39 };
    38 };
    40 
    39