Skip to content

Commit

Permalink
feat(tateyama): add session store, etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
t-horikawa committed Mar 4, 2024
1 parent c188d7d commit 5b355de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tateyama
Submodule tateyama updated 33 files
+17 −17 include/tateyama/session/container.h
+3 −3 include/tateyama/session/context.h
+59 −0 include/tateyama/session/core.h
+1 −1 include/tateyama/session/shutdown_request_type.h
+3 −3 include/tateyama/session/variable_declaration.h
+3 −3 include/tateyama/session/variable_declaration_set.h
+2 −2 include/tateyama/session/variable_set.h
+1 −1 include/tateyama/session/variable_type.h
+40 −0 src/tateyama/endpoint/common/response.h
+53 −6 src/tateyama/endpoint/common/worker_common.h
+16 −5 src/tateyama/endpoint/ipc/bootstrap/worker.cpp
+17 −9 src/tateyama/endpoint/ipc/ipc_response.h
+14 −4 src/tateyama/endpoint/stream/bootstrap/stream_worker.cpp
+1 −1 src/tateyama/endpoint/stream/stream.h
+1 −5 src/tateyama/endpoint/stream/stream_response.cpp
+16 −8 src/tateyama/endpoint/stream/stream_response.h
+9 −1 src/tateyama/proto/endpoint/request.proto
+18 −22 src/tateyama/session/container.cpp
+2 −2 src/tateyama/session/context.cpp
+36 −29 src/tateyama/session/resource/bridge.cpp
+5 −4 src/tateyama/session/resource/bridge.h
+41 −0 src/tateyama/session/resource/container_impl.cpp
+65 −0 src/tateyama/session/resource/container_impl.h
+25 −0 src/tateyama/session/resource/context_impl.cpp
+44 −0 src/tateyama/session/resource/context_impl.h
+5 −5 src/tateyama/session/resource/core_impl.cpp
+24 −9 src/tateyama/session/resource/core_impl.h
+3 −3 src/tateyama/session/service/core.cpp
+2 −2 src/tateyama/session/variable_declaration.cpp
+2 −2 src/tateyama/session/variable_declaration_set.cpp
+2 −2 src/tateyama/session/variable_set.cpp
+209 −0 test/tateyama/session/session_gc_test.cpp
+6 −6 test/tateyama/session/session_test.cpp

0 comments on commit 5b355de

Please sign in to comment.