- Improved IPv6 address formatting by outputting the special IPv4 syntax where applicable (by Denis Feklushkin aka denizzzka) - pull #416
- Fixed a possible
InvalidMemoryOperationError
when leakingFileStream
instances to the GC - pull #417
- Fixed emitting
ManualEvent
s from non-D threads - pull #415
- Fixed a bogus warning message - pull #415
- Fixes a
FileStream
regression introduced by the previous release - pull #412
- Fixed a rare crash issue occurring when logging from non-D threads - pull #410
- Fixed a possible crash for code that doesn't explicitly close a
FileStream
before terminating the owner thread - pull #411
- Added
createStreamConnection
for creating aTCPConnection
from an existingStreamSocketFD
- issue #151, pull #405 runTask
and related functions now acceptimmutable
arguments - issue #138, pull #403parallel(Unordered)Map
now forwards thelength
property of the input range - pull #404- Fixed
SyslogLogger
to behave properly w.r.t. concurrency and addedcreateSyslogLogger
- issue #176, pull #406, pull #407, pull #409 - Fixed a compile error when building with
-profile
or when callingasyncAwait
with anoreturn
cancel
callback - issue #299, issue #319, pull #408
- Fixes log arguments not being evaluated when no logger is logging the message - pull #399
- Fixes
relativeTo
to work withconst
arguments - pull #400
- Adds file/line number information to uncaught throwable diagnostic output - pull #398
- Fixed some scope related deprecation warnings (by Mathias Lang aka Geod24) - pull #392, pull #393, pull #393
- Fixed temporary file creation on iOS - pull #394
- Uncaught throwables in tasks are now properly logged and generate an error message box on Windows for GUI applications - pull #397
- Contains some purely internal API changes
- Contains some purely internal API changes
- Removed an assertion in
LockedConnection
that could be triggered from valid code - pull #384
- Fixed a crash that could happen when a
ManualEvent
is still in waiting state at runtime shutdown
performInWorker
now compiles for callbacks returningvoid
- [pull #377][issue377]- Fixed a possible assertion failure in
TaskMutex
caused by a race condition in debug mode - [pull #378][issue378] pipe
now avoids using the GC for buffer allocations in order to avoid pseudo memory leaks - [pull #381][issue381]
- Fixed a regression introduced in 2.7.1 that caused a crash after using more than 100 concurrent fibers in a single thread - [issue376][pull #376]
- Added
PipeConfig
for advancedpipe()
behavior configuration - [issue371][pull #371] - Added
vibe.core.concurrency.performInWorker
- [issue374][pull #374] - Removed an assertion that failed at process exit when leaking
ManualEvent
/TaskCondition
to the GC - [issue373][pull #373] - Fixed a potential crash at process shutdown when leaking a
Channel!T
to the GC - [issue374][pull #374] - Fixed uneven scheduling of worker tasks - [issue372][pull #372]
- Fixed a regression introduced by 2.6.0 causing rare crashes at process exit - [issue374][pull #374]
- Fixed an issue where hidden argument ownership in
runWorkerTaskH
resulted in a resource leak - [issue374][pull #374]
- Heavily reduced the overhead for
ManualEvent
and derived primitives when many waiters are present - pull #370 TaskPool
now allows to customize thread names - pull #370- Added
TaskEvent.schedule
- pull #370
- Increased the maximum size an
InterfaceProxy
- Added
TaskSemaphore
, along withcreateTaskSemaphore
andcreateLocalTaskSemaphore
- pull #368, pull #369 - Fixed
TCPConnection.read
to throw aReadTimeoutException
(by dushibaiyu) - pull #359, pull #366 - Fixed the behavior of
LocalTaskSemaphore
and made thepriority
argument a type signed - pull #369
- Added
yieldUninterruptible
- pull #364 - Improved debugging
yieldLock
violations - pull #364 - Now depends on
vibe-container
instead of having to rely on private container implementations - pull #365
- Added
Monitor
primitive for statically checked mutex protection of data - pull #360 - Thread based I/O functions, such as directory listing, are now executed in a dedicated thread pool - pull #361
workerTaskPool
andlogicalProcessorCount
are nownothrow
- pull #361- Fixed
async()
erroneously running in a worker thread for non-isolated return types - pull #363
- Tested up to DMD 2.105.0/LDC 1.34.0
- Fixes a number of warnings related to
scope
,in ref
and deprecated APIs - pull #357, pull #358
- Made most synchronization primitives (e.g.
TaskMutex
) constructible/usable asshared
- pull #354
- Improved compilation speed both for vibe-core and its dependencies - pull #350, pull #353
openFile
now doesn't bock the calling thread if eventcore 0.9.4 or newer is used - pull #351- Added
FileMode.create
- pull #351 - Added
TCPListenOptions.ipTransparent
(by Adam Williams aka Tusanga) - pull #349
- Fixes
GenericPath.Segment.toString
- pull #346
- Fixes all deprecation warnings related to DIP1000/DIP1021 (as of DMD 1.102.1) - pull #329, pull #339, pull #340
- Replaces
GenericPath.Segment
withGenericPath.Segment2
from 1.x.x - pull #336, pull #342 - Enforces
nothrow
callbacks as arguments torunTask
/runWorkerTask
- pull #335 OutputStream.write
now takes ascope const
argument instead ofin
- pull #329- Added
OutputStream.outputStreamVersion
(equal to2
) - Fixed a crash that could be caused by concurrently closing a TCP connection that was still being read from - pull #338
- Deprecated
Channel.empty
andChannel.consumeOne
- pull #344
- Deprecated the use of
GenericPath.Segment
in preparation to the changes coming to 2.0.0 - pull #341 - Added
OutputStream.outputStreamVersion
(equal to1
)
- (backported) Fixed a crash possibly caused by concurrent closing of a TCP connection that was still being read - pull #338
- Updates compiler frontend support to range from 2.090.0 up to 2.101.2 - pull #330
- Fixes a socket descriptor leak after a connect timeout - issue #331, pull #332
- Fixed a Windows issue when closing a TCP connection while concurrently reading from it - pull #330
- Added an optional
timeout
parameter torunEventLoopOnce
(by Grillo del Mal) - pull #325 - Marked
peer_address
parameters of theUDPConnection
API asscope
- pull #321 - Fixed compilation errors on iOS - pull #323
- Fixed an issue with non-deterministic destruction in
FixedRingBuffer
- pull #321 - Fixed a possible infinite recursion when using
yield()
outside of a task - pull #326
- Annotate
inout
functions withreturn
(By Dennis Korpel) - pull #313 - Better error message for GenericPath.fromTrustedString - pull #314
- Added
ConnectionPool.add()/remove()
(by Ömer Faruk Irmak) - pull #303 - Added a timeout based overload of
TaskMutex.wait
(by Ömer Faruk Irmak) - pull #303 - Fixed compilation on DMD frontend/runtime version prior to 2.090.0
- Fixed
parallelMap
to clean up processed elements without relying on the GC - pull #311 - Fixed
runWorkerTaskH
/TaskPool.runTaskH
to not create a GC closure with the passed arguments - pull #312 - Fixed
isWeaklyIsolated
to consider dynamic arrays ofshared
values weakly isolated - pull #312
- Reduced resource overhead for tasks that don't use
std.concurrency
- pull #309 - Added
Future.task
property - pull #308 shared
/immutable
delegates are now treated as (weakly) isolated - pull #309
- Fixed
FileStream.leastSize
in case the file pointer is past the file size - pull #304 - Added
TCPConnection.fd
andUDPConnection.fd
properties (by Hiroki Noda aka kubo39) - pull #296
- Added
TruncatableStream
andClosableRandomAccessStream
-FileStream
now implements the latter - pull #294
core.file
: Fix-preview=in
support - pull #290- Mark
TaskFiberQueue.insert
functions@trusted
(By Dennis Korpel) - pull #291 - Fix possibly hanging process after SIGINT/SIGTERM - pull #292
- Adds a
UDPListenOptions
argument tolistenUDP
- pull #286
- Fixes compilation on Android - pull #281
- Deprecated calling
runTask
and its variants with non-nothrow
task callables - pull #279- Uncaught exceptions in tasks are highly error prone due to the often undetected termination of such a task
- Alternative approaches, such as re-throwing from
join
is neither thread-safe, nor statically checkable - Using
nothrow
callables will be mandatory for vibe-core 2.x.x
- Made more parts of the API
nothrow
- Added
getLogLevel
- issue #235, pull #280
- Fixed a regression in
listDirectory
caused by the linker fix for macOS/M1 - pull #277
- Made more parts of the API
nothrow
- pull #274 - Added support for debugging currently running tasks via debug version
VibeRunningTasks
andprintRunningTasks
- pull #275 - Added a
NativePath
based overload for recursivecreateDirectory
- pull #272 - Fixed linking
fstatat
on macOS/ARM (by kookman) - pull #271, issue #269 - Fixed
pipe()
to not close the pipe file descriptors before returning (by Tomáš Chaloupka) - pull #268, issue #267 - Fixed unnecessary creation of event drivers during shutdown for threads that didn't have one - pull #276
- Added a sub directory predicate for recursive directory listing - pull #266
- Compatibility fixes for POSIX-based platforms, notable Musl-based ones - pull #249
- Added a CI task to ensure compatibility with Musl - pull #250
- Various optimizations to
vibe.core.path: InetPath
- pull #251 GenericPath.Segment[2].opCast
is nowconst
- pull #252- Compatibility fix for upcoming (v2.097.0) deprecation - pull #253
- Improve documentation for
setTimer
andsleep
- pull #255 - Ensure that a timer callback is never invoked concurrently - pull #256, pull #260, pull #262
- Make
LocalTaskSemaphore.this
nothrow
for compatibility with v2.096.0 - pull #259
- Added
parallelMap
andparallelUnorderedMap
- pull #247 - Added
GenericPath.filenameExtension
, as well asSegment2.extension
and.withoutExtension
properties - pull #246 - Added
workerTaskPool
accessor to get the default task pool - pull #247 - Added
GenericPath.normalized
- pull #246
- Added
ChannelConfig
and a channel mode to minimize synchronization overhead - pull #241 - Added
DirectoryListMode
and optimizedlistDirectory
/iterateDirectory
- pull #242, pull #244 - Optimized
PipeMode.concurrent
for fast streams - pull #243
- Fixed a task scheduling issue for busy worker tasks that call
yield()
periodically - pull #240 - Fixed a compilation error on DMD 2.079.0
ScopedMutexLock
is nownothrow
, using assertions instead ofException
in case of misuse- Fixes a possible "access denied" error for directories that have been iterated using
listDirectory
on Windows - pull #239
- Fixed a bogus assertion failure ("A task cannot interrupt itself") - pull #236
- Fixed a deprecation warning triggered in vibe:http - pull #234
- Added a concurrent mode to
pipe()
usingPipeMode.concurrent
to improve throughput in I/O limited situations - pull #233
- Fixed
waitForDataEx
to returnWaitForDataStatus.timeout
for zero-timeouts if the connection is still alive pull #232
- Fixed a critical data corruption bug caused by eventcore's
cancelRead
/cancelWrite
- note that this fix makesFile.read
andwrite
uninterruptible - pull #227 - Fixed
InterfaceProxy!T
to behave correctly fornull
target instances - pull #228
- Added support for upcoming DMD 2.094.0's
-preview=in
switch - pull #225
- The minimum supported compiler has been raised to v2.079.0
- The
log
(log
,logTrace
,logInfo
...) invibe.core.log
have been simplified to take the module/file/line as default runtime argument as opposed to compile-time - this could cause breakage if you were explicitly forwarding those arguments - Some places were previously using
logDebug
for full exception error message, and were using various method to ensurenothrow
ness. All full exception stacktrace are now printed only in diagnostic mode. - Full details are available in pull #212.
- Add optional timeout parameter to resolveHost - pull #220
- Fix exclusion list to properly exclude broken LDC releases - pull #221
- Workaround dub build by using
--single
in the test - pull #223 - Cleanup deprecations in test-suite and update release notes - pull #222
- Removed dead import of deprecated symbol
enforceEx
- pull #214 - Improved error messages for non-implemented interfaces - pull #216
- Improved internal unittests to be forward-compatible - [pull #213][pull213] and [pull #215][pull215]
- Updated tested compiler range to DMD 2.078.3-2.092.0 and LDC 1.15.0-1.21.0
- Added support for a
CFRunLoop
based configuration on macOS to enable efficient UI integration - pull #211 - Removed potentially blocking file I/O code - pull #210
- Added error handling for process creation - pull #210
- Compiler support updated to DMD 2.078.3-2.091.0 and LDC 1.15.0-1.20.1 - pull #192
- Fixed SysLogger to compile again (was broken since the first vibe-core release) - issue #203, pull #204
- Fixed
relativeTo
to benothrow
- pull #206
- Implemented priority based task scheduling - pull #196, pull #197
- Each task can be given a non-default priority that controls the relative frequency with which the task gets resumed in concurrent situations
- Events are now handled according to the calling task's priority instead of being handled immediately (can be reverted by defining a
VibeHighEventPriority
version)
- Fixed a bogus contract violation error in
Timer.rearm
- pull #195
- Fixes a documentation generation error (by Mathias Lang aka Geod24) - pull #187
- Added a new path segment API that works without GC allocations (
GenericPath.bySegment2
/.head2
) - this will replace the old API in version 2.x.x of the library - pull #179 - Added
GenericPath.byPrefix
to iterate over all ancestor paths from root to leaf - pull #181 - Fixed a bug with uninitialized
YieldLock
instances (which can happen even with@disable this()
) - pull #180 - Heavily improved performance of
readFileUTF8
for large files by using a more efficientsanitizyUTF8
implementation - pull #182 - CI tests now also run on macOS in addition to Linux and Windows - pull #183
- Supports DMD 2.077.1 up to DMD 2.088.0 and LDC 1.7.0 to LDC 1.17.0 - pull #166, pull #177
- Added
vibe.core.process
for task based process handling similar tostd.process
(by Benjamin Schaaf) - pull #154 - Added
ConnectionPool.removeUnused
to enable closing all unused connections - pull #143 - Added
logException
to log exceptions in a standard andnothrow
way - pull #155 - Added
TCPListenOptions.reuseAddress
for explicitly control ofSO_REUSEADDR
for listening sockets (by Radu Racariu) - pull #150 - Added
TCPConnection.waitForDataEx
- pull #159, pull #153 - Fixed
TCPConnection.leastSize
to adhere to thereadTimeout
set - pull #160 - Updated compiler support to DMD 2.086.0 and LDC 1.5.0
- The logging functions now log verbatim if no additional argument is passed (by Denis Feklushkin aka dennizzzka) - issue #87, pull #152
- Made
GenericPath.parentPath
pure
- pull #165 - All remaining operations in
vibe.core.file
are now done asynchronously (using worker tasks) - pull #172 - Fixed a potential range violation in
iterateDirectory
/getFileInfo
- pull #144 - Fixed thread-safety of
Task.join
andTask.interrupt
when operating cross-thread - pull #145 - Fixed
copyFile
for write protected files - failed to set file times - Fixed hanging
Task.yield()
calls in case of multiple waiters - issue #161, pull #162 - Fixed
Channel!T.empty
to guarantee a successfulconsumeOne
forfalse
in case of a single reader - issue #157, pull #163 - Fixed a crash when deleting a handle from a foreign thread after the original thread has terminated - issue #135, pull #164
- Fixed an issue in
ConnectionPool
where the pool became unusable after connection failures (by Tomáš Chaloupka) - pull #169 - Fixed
FileStream
in append mode to report correct file offsets and disallow seeking (by v1ne) - pull #168
- Fixed
listDirectory
/iterateDirectory
to not throw when encountering inaccessible files - pull #142 - Added
FileInfo.isFile
to be able to distinguish between regular and special files (by Francesco Mecca) - pull #141
- Fixed handling of the
args_out
parameter ofrunApplication
(by Joseph Rushton Wakeling) - pull #134 - Fixed
TCPConnectionFunction
to be actually defined as a function pointer (by Steven Dwy) - pull #136, issue #109 - Fixed execution interleaving of busy
yield
loops inside and outside of a task - pull #139
- Improved the Channel!T API - pull #127, pull #130
- Usable as a
shared(Channel!T)
- Most of the API is now
nothrow
createChannel
is now@safe
- Usable as a
yieldLock
is now@safe nothrow
- pull #127Task.interrupt
can now be called from within ayieldLock
section - pull #127- Added
createLeanTimer
and reverted the task behavior back to pre-1.4.4 - [] - Fixed a bogus assertion failure in
connectTCP
on Posix systems - pull #128 - Added
runWorkerTaskDistH
, a variant ofrunWorkerTaskDist
that returns all task handles - pull #129 TaskCondition.wait
,notify
andnotifyAll
are nownothrow
- pull #130
- Supports DMD 2.078.3 up to DMD 2.084.0 and LDC up to 1.13.0
- Added statically typed CSP style cross-task channels - pull #25
- The current implementation is buffered and supports multiple senders and multiple readers
- Improved API robustness and documentation for
InterruptibleTaskMutex
- issue #118, pull #119synchronized(iterriptible_mutex)
now results in a runtime error instead of silently using the automatically created object monitor- resolved an overload conflict when passing a
TaskMutex
toInterruptibleTaskCondition
scopedMutexLock
now acceptsInterruptibleTaskMutex
- Fixed a socket file descriptor leak in
connectTCP
when the connection fails (by Jan Jurzitza aka WebFreak001) - issue #115, pull #116, pull #123 - Fixed
resolveHost
to not treat qualified host names starting with a digit as an IP address - issue #117, pull #121 - Fixed
copyFile
to retain attributes and modification time - pull #120 - Fixed the copy+delete path of
moveFile
to usecopyFile
instead of the blockingstd.file.copy
- pull #120 - Fixed
createDirectoryWatcher
to properly throw an exception in case of failure - pull #120 - Fixed ddoc warnings - issue #103, pull #119
- Fixed the exception error message issued by
FileStream.write
(by Benjamin Schaaf) - pull #114
- Added
FileStream.truncate
- pull #113 - Using
MonoTime
instead ofClock
for timeout functionality (by Hiroki Noda aka kubo39) - pull #112 - Fixed
UDPConnection.connect
to handle the port argument properly (by Mathias L. Baumann aka Marenz) - pull #108 - Fixed a bogus assertion failure in
TCPConnection.waitForData
when the connection gets closed concurrently (by Jan Jurzitza aka WebFreak001) - pull #111
- Compile fix for an upcoming Phobos version - pull #100
- Fixed as assertion error in the internal spin lock implementation when pressing Ctrl+C on Windows - pull #99
- Fixed host name string conversion for
SyslogLogger
- [issue vibe-d/vibe.d#2220][vibe.d-issue2220], pull #102 - Fixed callback invocation for unreferenced periodic timers - issue #104, pull #106
- Compiler support updated to DMD 2.076.1 up to DMD 2.082.1 and LDC 1.6.0 up to 1.12.0 - pull #92, pull #97
- Simplified worker task logic by avoiding an explicit event loop - pull #95
- Fixed an issue in
WindowsPath
, where an empty path was converted to "/" when cast to another path type - pull #91 - Fixed two hang issues in
TaskPool
causing the worker task processing to possibly hang at shutdown or to temporarily hang during run time - pull #96 - Fixed internal timer callback tasks leaking memory - [issue #86][issue86], pull #98
- Allows
switchToTask
to be called within a yield lock (deferred until the lock is elided)
- Fixed a potential infinite loop in the task scheduler causing 100% CPU use - pull #88
- Fixed
waitForDataAsync
when using in conjunction with callbacks that have scoped destruction - pull #89
- Fixed compilation errors for
ConnectionPool!TCPConnection
- issue vibe.d#2109, pull #70 - Fixed destruction behavior when destructors are run in foreign threads by the GC - issue #69, pull #74
- Fixed a possible assertion failure for failed
connectTCP
calls - pull #75 - Added missing
setCommandLineArgs
API (by Thomas Weyn) - pull #72 - Using
MonoTime
forTCPConnection
timeouts (by Boris Barboris) - pull #76 - Fixed the
Task.running
state of tasks that are scheduled to be run after an activeyieldLock
- pull #79 - Fixed an integer overflow bug in
(Local)ManualEvent.wait
(by Boris Barboris) - pull #77 - Disabled handling of
SIGABRT
on Windows to keep the default process termination behavior - commit 463f4e4 - Fixed event processing for
yield()
calls outside of a running event loop - pull #81
- Compiles on DMD 2.072.2 up to 2.079.0
- Uses the stdx-allocator package instead of
std.experimental.allocator
- note that this change requires version 0.8.3 of vibe-d to be used - Added
TCPConnection.waitForDataAsync
to enable temporary detachment of a TCP connection from a fiber (by Francesco Mecca) - pull #62 - Fixed
TCPConnection.leastSize
to return numbers greater than one (by Pavel Chebotarev aka nexor) - pull #52 - Fixed a task scheduling assertion happening when worker tasks and timers were involved - issue #58, pull #60
- Fixed a race condition in
TaskPool
leading to random assertion failures - 7703cc6 - Fixed an issue where the event loop would exit prematurely when calling
yield
- issue #66, pull #67 - Fixed/worked around a linker error on LDC/macOS - issue #65, pull #68
- Compiles on DMD 2.071.2 up to 2.077.0
- Added a
timeout
parameter inconnectTCP
(by Boris Baboris) - pull #44, pull #41 - Fixes the fiber event scheduling mechanism to not cause any heap allocations - this alone gives a performance boost of around 20% in the bench-dummy-http example - pull #27
- Added
FileInfo.hidden
property pipe()
now returns the actual number of bytes written- Fixed
TCPListener.bindAddress
- Fixed a segmentation fault when logging from a non-D thread
- Fixed
setupWorkerThreads
andworkerThreadCount
- issue #35 - Added
TaskPool.threadCount
property - Added an
interface_index
parameter toUDPConnection.addMembership
Task.tid
can now be called on aconst(Task)
- Compiles on DMD 2.071.2 up to 2.076.0
- Marked a number of classes as
final
that were accidentally left as overridable - Un-deprecated
GenericPath.startsWith
due to the different semantics compared to the replacement suggestion - Added a
listenUDP(ref NetworkAddress)
overload - Implemented the multicast related methods of
UDPConnection
- pull #34 HTMLLogger
now logs the fiber/task ID- Fixed a deadlock caused by an invalid lock count in
LocalTaskSemaphore
(by Boris-Barboris) - pull #31 - Fixed
FileDescriptorEvent
to adhere to the given event mask - Fixed
FileDescriptorEvent.wait
in conjunction with a finite timeout - Fixed the return value of
FileDescriptorEvent.wait
- Fixed handling of the
periodic
argument to the@system
overload ofsetTimer
- Fixed/implemented
TCPListener.stopListening
- Fixed a crash when using
NullOutputStream
or other class based streams - Fixed a "dwarfeh(224) fatal error" when the process gets terminated due to an
Error
- pull #24 - Fixed assertion error when
NetworkAddress.to(Address)String
is called with no address set - Fixed multiple crash and hanging issues with
(Local)ManualEvent
- pull #26
- Added a new debug hook
setTaskCreationCallback
- Fixed a compilation error for
VibeIdleCollect
- Fixed a possible double-free in
ManualEvent
that resulted in an endless loop - pull #23
This is the initial release of the vibe-core
package. The source code was derived from the original :core
sub package of vibe.d and received a complete work over, mostly under the surface, but also in parts of the API. The changes have been made in a way that is usually backwards compatible from the point of view of an application developer. At the same time, vibe.d 0.8.0 contains a number of forward compatibility declarations, so that switching back and forth between the still existing vibe-d:core
and vibe-core
is possible without changing the application code.
To use this package, it is currently necessary to put an explicit dependency with a sub configuration directive in the DUB package recipe:
// for dub.sdl:
dependency "vibe-d:core" version="~>0.8.0"
subConfiguration "vibe-d:core" "vibe-core"
// for dub.json:
"dependencies": {
"vibe-d:core": "~>0.8.0"
},
"subConfigurations": {
"vibe-d:core": "vibe-core"
}
During the development of the 0.8.x branch of vibe.d, the default will eventually be changed, so that vibe-core
is the default instead.
- The high-level event and task scheduling abstraction has been replaced by the low level Proactor abstraction eventcore, which also means that there is no dependency to libevent anymore.
- GC allocated classes have been replaced by reference counted
struct
s, with their storage backed by a compact array together with event loop specific data. @safe
andnothrow
have been added throughout the code base,@nogc
in some parts where no user callbacks are involved.- The task/fiber scheduling logic has been unified, leading to a major improvement in robustness in case of exceptions or other kinds of interruptions.
- The single
Path
type has been replaced byPosixPath
,WindowsPath
,InetPath
andNativePath
, where the latter is an alias to eitherPosixPath
orWindowsPath
. This greatly improves the robustness of path handling code, since it is no longer possible to blindly mix different path types (especially file system paths and URI paths). - Streams (
InputStream
,OutputStream
etc.) can now also be implemented asstruct
s instead of classes. All API functions accept stream types as generic types now, meaning that allocations and virtual function calls can be eliminated in many cases and function inlining can often work across stream boundaries. - There is a new
IOMode
parameter for read and write operations that enables a direct translation of operating system provided modes ("write as much as possible in one go" or "write only if possible without blocking").