ekfa/apps/efka/include/message.hrl
2026-07-09 10:38:16 +08:00

26 lines
847 B
Erlang

%%%-------------------------------------------------------------------
%%% @author anlicheng
%%% @copyright (C) 2026, <COMPANY>
%%% @doc
%%%
%%% @end
%%% Created : 07. 7月 2026 17:09
%%%-------------------------------------------------------------------
-author("anlicheng").
%%--------------------------------------------------------------------
%% Wire classes
%%--------------------------------------------------------------------
-define(CLASS_REQUEST, 1).
-define(CLASS_RESPONSE, 2).
-define(CLASS_COMMAND, 3).
-define(CLASS_COMMAND_RESPONSE, 4).
-define(CLASS_MESSAGE, 5).
-define(CLASS_STREAM, 6).
%%--------------------------------------------------------------------
%% Stream targets
%%--------------------------------------------------------------------
-define(STREAM_TARGET_MANAGER, 1).
-define(STREAM_TARGET_CONTAINER_DEPLOY, 2).