Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Merge requests
!6441
Resolve
#3414287
"Big pipe"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Open
Resolve
#3414287
"Big pipe"
issue/drupal-3414287:3414287-big-pipe
into
11.x
Overview
0
Commits
8
Pipelines
11
Changes
6
Open
catch
requested to merge
issue/drupal-3414287:3414287-big-pipe
into
11.x
1 year ago
Overview
0
Commits
8
Pipelines
11
Changes
6
Expand
Closes
#3414287
0
0
Merge request reports
Compare
11.x
version 10
d3122477
1 year ago
version 9
00a0077c
1 year ago
version 8
1064ade6
1 year ago
version 7
c4b14217
1 year ago
version 6
24763855
1 year ago
version 5
5285cbd2
1 year ago
version 4
5d8915c1
1 year ago
version 3
95f56859
1 year ago
version 2
52f917a3
1 year ago
version 1
710a7396
1 year ago
11.x (base)
and
latest version
latest version
e163d892
8 commits,
1 year ago
version 10
d3122477
7 commits,
1 year ago
version 9
00a0077c
8 commits,
1 year ago
version 8
1064ade6
7 commits,
1 year ago
version 7
c4b14217
7 commits,
1 year ago
version 6
24763855
6 commits,
1 year ago
version 5
5285cbd2
5 commits,
1 year ago
version 4
5d8915c1
4 commits,
1 year ago
version 3
95f56859
3 commits,
1 year ago
version 2
52f917a3
2 commits,
1 year ago
version 1
710a7396
1 commit,
1 year ago
6 files
+
23
−
18
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
6
Search (e.g. *.vue) (Ctrl+P)
core/lib/Drupal/Core/Session/ResponseKeepSessionOpenInterface.php
0 → 100644
+
16
−
0
Options
<?php
namespace
Drupal\Core\Session
;
/**
* Indicates that sessions for this response should be kept open after sending.
*
* By default, Drupal closes sessions as soon as the response is sent. If
* a response implements this interface, Drupal will skip this behavior and
* assume that the session will be closed manually later in the request.
*
* @see Drupal\Core\StackMiddleware\Session
* @see Drupal\big_pipe\src\Render\BigPipeResponse
* @internal
*/
interface
ResponseKeepSessionOpenInterface
{}
Loading