Current section

Files

Jump to
gen_spoxy lib cache behaviour.ex
Raw

lib/cache/behaviour.ex

defmodule Spoxy.Cache.Behaviour do
@moduledoc """
decides if the stored data should be invalidated (for example stale data)
"""
@callback should_invalidate?(
req :: any,
resp :: any,
metadata :: any
) :: boolean()
end