internal ApamaBreakpoint(ApamaLinuxConnector connector, ApamaBreakpointType breakpointType,
		                          UInt64 address, UInt64 size)
        {
            _connector = connector;
            _breakpointType = breakpointType;
            _address = address;
            _size = size;
        }
 private static extern ApamaReturnValue apama_breakpoint_set(IntPtr session, ApamaBreakpointType type, UInt64 address, UInt64 kind);