void socket::destroy(context& ctx) { CZMQPP_ASSERT(self_); zsocket_destroy(ctx.self(), self_); }
socket::socket(context& ctx, int type) { self_ = zsocket_new(ctx.self(), type); }