defmodule LivebookWeb.SessionLive.EmbeddedLive do use LivebookWeb, :live_view alias Livebook.{Session, Runtime} alias LivebookWeb.SessionLive.RuntimeHelpers @impl true def mount(_params, %{"session" => session, "current_runtime" => current_runtime}, socket) do if connected?(socket) do Phoenix.PubSub.subscribe(Livebook.PubSub, "sessions:#{session.id}") end {:ok, assign(socket, session: session, current_runtime: current_runtime)} end @impl true def render(assigns) do ~H"""
Run the notebook code within the Livebook node itself. This is reserved for specific cases where there is no option of starting a separate Elixir runtime (for example, on embedded devices or cases where the amount of memory available is limited). Prefer the "Elixir standalone" runtime whenever possible.
Warning: any module that you define will be defined globally until you restart Livebook. Furthermore, code in one notebook may interfere with code from another notebook.